-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.04 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
{
"name": "webcell-mobile",
"version": "0.4.0",
"description": "Mobile App scaffold of WebCell v3, which is a PWA scaffold based on Material Design Web components, with Anti-996 sample data.",
"author": "[email protected]",
"homepage": "https://web-cell.dev/WebCell-mobile/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/WebCell-mobile.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/WebCell-mobile/issues"
},
"dependencies": {
"browser-unhandled-rejection": "^1.0.2",
"cell-router": "^3.0.1",
"dom-renderer": "^2.6.1",
"koajax": "^3.1.1",
"mdui": "^2.1.3",
"mobx": "^6.13.5",
"web-cell": "^3.0.3",
"web-utility": "^4.4.2"
},
"devDependencies": {
"@parcel/config-default": "~2.13.2",
"@parcel/packager-raw-url": "~2.13.2",
"@parcel/transformer-typescript-tsc": "~2.13.2",
"@parcel/transformer-webmanifest": "~2.13.2",
"@softonus/prettier-plugin-duplicate-remover": "^1.1.2",
"@types/node": "^20.17.9",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"parcel": "~2.13.2",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-css-order": "^2.1.2",
"typescript": "~5.7.2",
"workbox-cli": "^7.3.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4,
"plugins": [
"prettier-plugin-css-order",
"@softonus/prettier-plugin-duplicate-remover"
]
},
"lint-staged": {
"*.{html,md,css,less,json,yml,js,ts,tsx}": "prettier --write"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged",
"clean": "rm -rf .parcel-cache/ dist/",
"start": "npm run clean && parcel src/index.html",
"pack": "parcel build src/index.html --public-url .",
"build": "npm run clean && npm run pack && workbox generateSW"
}
}