forked from volcano-sh/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "volcano-dashboard",
"version": "0.1.0",
"private": true,
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"backend": "npm run dev -w backend",
"frontend": "npm run dev -w frontend",
"dev": "concurrently -n server,client \"npm run backend\" \"npm run frontend\"",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,md}": "prettier --write"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1"
}
}