-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.52 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
{
"name": "@jscig/official",
"version": "0.6.0",
"private": true,
"description": "Official Web site of JavaScript Chinese Interest Group",
"homepage": "https://jscig.github.io/",
"repository": "https://github.com/JSCIG/jscig.github.io",
"license": "UNLICENSED",
"author": "JSCIG",
"scripts": {
"prepare": "husky",
"clean": "rm -rf .parcel-cache/ dist/",
"build": "npm run pack-dist && npm run pack-sw",
"pack-dist": "npm run clean && parcel build source/index.html --public-url .",
"pack-sw": "rm -f dist/sw.js.map && workbox generateSW",
"start": "npm run clean && parcel source/index.html --open",
"test": "lint-staged && tsc --noEmit"
},
"dependencies": {
"boot-cell": "^2.0.0-beta.29",
"browser-unhandled-rejection": "^1.0.2",
"cell-router": "^3.0.0-rc.8",
"classnames": "^2.5.1",
"dom-renderer": "^2.4.4",
"iterable-observer": "^1.1.0",
"koajax": "^3.0.3",
"mobx": "^6.13.5",
"mobx-restful": "^2.0.0",
"web-cell": "^3.0.1",
"web-utility": "^4.4.2"
},
"devDependencies": {
"@parcel/config-default": "~2.12.0",
"@parcel/packager-raw-url": "~2.12.0",
"@parcel/transformer-less": "2.12.0",
"@parcel/transformer-typescript-tsc": "~2.12.0",
"@parcel/transformer-webmanifest": "~2.12.0",
"@types/node": "^20.17.6",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"parcel": "~2.12.0",
"postcss": "^8.4.48",
"postcss-modules": "^4.3.1",
"prettier": "^3.3.3",
"typescript": "~5.6.3",
"workbox-cli": "^7.3.0"
}
}