forked from surma/jxl-art
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "starterkit",
"version": "0.0.1",
"description": "",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"serve": "superstatic -p 5000 build",
"dev": "run-p watch serve"
},
"keywords": [],
"author": "Surma <surma@surma.dev>",
"license": "Apache-2.0",
"dependencies": {
"@rollup/plugin-node-resolve": "^11.2.1",
"@surma/rollup-plugin-off-main-thread": "^2.1.0",
"@swc/core": "^1.2.51",
"comlink": "^4.3.0",
"ejs": "^3.1.6",
"idb-keyval": "^5.0.4",
"pinch-zoom-element": "^1.1.1",
"pointer-tracker": "^2.4.0",
"postcss": "^8.2.13",
"rimraf": "^3.0.2",
"rollup": "^2.43.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-swc": "^0.1.4",
"rollup-plugin-terser": "^7.0.2",
"web-streams-polyfill": "^3.0.2"
},
"devDependencies": {
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"simple-git-hooks": "^2.2.0",
"superstatic": "^7.1.0"
},
"lint-staged": {
"*.{html.ejs,as,js,css,md}": "prettier --write",
"*.{js,css,md}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}