forked from Chalarangelo/30-seconds-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "30-seconds-web",
"private": true,
"version": "1.0.0",
"description": "Website for 30-seconds projects.",
"main": "index.js",
"author": "30-seconds",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@jsiqle/core": "^1.4.1",
"@types/jest": "^27.0.1",
"astro": "^2.1.0",
"astro-compress": "^1.1.35",
"astro-critters": "^1.1.31",
"chalk": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"esm": "^3.2.25",
"front-matter": "^4.0.2",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"hast-util-to-html": "^7.1.3",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"mdast-util-to-hast": "^10.2.0",
"node-sass": "^8.0.0",
"prettier": "^2.8.4",
"prettier-plugin-astro": "^0.8.0",
"prismjs": "^1.27.0",
"remark": "^13.0.0",
"remark-gfm": "^1.0.0",
"sass": "^1.58.3",
"sharp": "^0.31.3",
"unist-util-select": "3.0.4",
"unist-util-visit": "^2.0.3",
"unist-util-visit-parents": "^3.1.1",
"webfonts-generator": "^0.4.0"
},
"keywords": [
"30-seconds",
"snippets"
],
"license": "MIT",
"scripts": {
"predev": "NODE_PATH=src NODE_ENV=development node -r esm ./src/scripts/develop.js",
"dev": "NODE_PATH=src astro dev --port 8000",
"start": "NODE_PATH=src astro dev --port 8000",
"prebuild": "NODE_PATH=src NODE_ENV=production node -r esm ./src/scripts/build.js",
"build": "NODE_PATH=src astro build",
"preview": "NODE_PATH=src astro preview --port 9000",
"console": "NODE_PATH=src NODE_ENV=development node -r esm ./src/scripts/console.js",
"create": "NODE_PATH=src NODE_ENV=production node -r esm ./src/scripts/create.js",
"lint": "eslint './src/**/*.js' './src/**/*.jsx'",
"icons": "NODE_PATH=src NODE_ENV=production node -r esm ./src/scripts/icons.js",
"manifest": "NODE_PATH=src NODE_ENV=production node -r esm ./src/scripts/manifest.js",
"format": "prettier --config .prettierrc --write './**/*.{js,jsx}'",
"test": "NODE_PATH=src NODE_ENV=test jest --config src/test/jest-config.json",
"test:watch": "NODE_PATH=src NODE_ENV=test jest --config src/test/jest-config.json --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/30-seconds/30-seconds-web"
},
"bugs": {
"url": "https://github.com/30-seconds/30-seconds-web/issues"
},
"browserslist": [
"> 0.5% and last 4 versions and not dead and not ie>0 and not op_mini all and not and_uc>0 and not edge<79"
],
"engines": {
"node": ">=18.14.2"
}
}