-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.17 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": "starterkit",
"version": "0.0.1",
"type": "module",
"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": "^15.2.3",
"@rollup/plugin-swc": "^0.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@surma/rollup-plugin-off-main-thread": "^2.2.3",
"@swc/core": "^1.4.2",
"comlink": "^4.4.1",
"ejs": "^3.1.9",
"idb-keyval": "^6.2.1",
"pinch-zoom-element": "^1.1.1",
"pointer-tracker": "^2.5.3",
"postcss": "^8.4.35",
"rimraf": "^5.0.5",
"rollup": "^4.12.0",
"rollup-plugin-postcss": "^4.0.2",
"web-streams-polyfill": "^3.3.3"
},
"devDependencies": {
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.9.0",
"superstatic": "^9.0.3"
},
"lint-staged": {
"*.{html.ejs,as,js,css,md}": "prettier --write",
"*.{js,css,md}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}