generated from EasyWebApp/WebCell-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.74 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "webcell-dashboard",
"version": "0.5.0",
"description": "Admin DashBoard scaffold of WebCell v3",
"keywords": [
"web-component",
"typescript",
"jsx",
"web-cell",
"scaffold",
"dashboard",
"admin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/WebCell-dashboard.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/WebCell-dashboard/issues"
},
"dependencies": {
"boot-cell": "^2.0.0-beta.29",
"browser-unhandled-rejection": "^1.0.2",
"cell-router": "^3.0.1",
"classnames": "^2.5.1",
"dom-renderer": "^2.6.0",
"echarts-jsx": "^1.2.1",
"koajax": "^3.0.3",
"mobx": "^6.13.5",
"mobx-downloader": "^0.3.0",
"mobx-restful": "2.0.0",
"web-cell": "^3.0.3",
"web-utility": "^4.4.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.15.0",
"@octokit/openapi-types": "^22.2.0",
"@parcel/config-default": "~2.13.0",
"@parcel/packager-raw-url": "~2.13.0",
"@parcel/transformer-less": "~2.13.0",
"@parcel/transformer-typescript-tsc": "~2.13.0",
"@parcel/transformer-webmanifest": "~2.13.0",
"@softonus/prettier-plugin-duplicate-remover": "^1.0.1",
"@types/chart.js": "^2.9.41",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^20.17.6",
"buffer": "^6.0.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"parcel": "~2.13.0",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"prettier-plugin-css-order": "^2.1.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.15.0",
"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,mjs,ts,tsx}": "prettier --write",
"*.{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": "npm run clean && parcel build src/index.html --public-url .",
"build": "npm run pack && workbox generateSW"
}
}