-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "pocket",
"version": "1.0.0",
"type": "module",
"scripts": {
"lib": "node toolchain lib",
"gzip": "gzip --best --keep --no-name deploy/dist/index.html",
"prepare": "rm -rf deploy/dist && mkdir deploy/dist",
"build": "npm run prepare && NODE_ENV=production node toolchain build",
"start": "npm run prepare && NODE_ENV=development node toolchain start",
"deno": "npm run build && deno run -A deploy/index.js"
},
"dependencies": {
"classcat": "^5.0.3",
"superfine": "^8.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@mapbox/rehype-prism": "^0.7.0",
"@mdx-js/esbuild": "^2.1.2",
"@tabler/icons": "^1.78.0",
"babel-plugin-preval": "^5.1.0",
"clean-css": "^5.3.1",
"culori": "^2.0.3",
"esbuild": "^0.14.49",
"escape-html": "^1.0.3",
"fast-glob": "^3.2.11",
"mini-svg-data-uri": "^1.4.4",
"sass": "^1.54.0",
"svgo": "^2.8.0",
"typescript": "^4.7.4",
"uglify-js": "^3.16.3"
},
"optionalDependencies": {
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"stylelint": "^14.15.0",
"stylelint-config-clean-order": "^2.1.0",
"stylelint-config-standard-scss": "^6.1.0"
}
}