-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.73 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "webcell-mobile",
"version": "0.5.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": "shiy2008@gmail.com",
"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.3",
"dom-renderer": "^2.6.2",
"koajax": "^3.1.1",
"mdui": "^2.1.3",
"mobx": "^6.13.6",
"web-cell": "^3.0.4",
"web-utility": "^4.4.3"
},
"devDependencies": {
"@cspell/eslint-plugin": "^8.17.5",
"@eslint/js": "^9.22.0",
"@html-eslint/eslint-plugin": "^0.35.2",
"@html-eslint/parser": "^0.35.2",
"@parcel/config-default": "~2.13.3",
"@parcel/packager-raw-url": "~2.13.3",
"@parcel/transformer-typescript-tsc": "~2.13.3",
"@parcel/transformer-webmanifest": "~2.13.3",
"@stylistic/eslint-plugin": "^4.2.0",
"@tailwindcss/postcss": "^4.0.14",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.13.10",
"cross-env": "^7.0.3",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"lint-staged": "^15.5.0",
"parcel": "~2.13.3",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.14",
"typescript": "~5.8.2",
"typescript-eslint": "^8.26.1",
"workbox-cli": "^7.3.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4,
"plugins": [
"prettier-plugin-css-order",
"prettier-plugin-tailwindcss"
]
},
"lint-staged": {
"*.{html,md,css,less,json,yml,js,ts,tsx}": "prettier --write",
"*.{css,js,mjs,ts,tsx}": "eslint --fix"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged",
"clean": "rm -rf .parcel-cache/ dist/",
"start": "npm run clean && parcel src/index.html",
"pack": "cross-env PARCEL_WORKER_BACKEND=process parcel build src/index.html --public-url .",
"build": "npm run clean && npm run pack && workbox generateSW"
}
}