-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
{
"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 .",
"test:frontend": "npm run test -w frontend",
"test:backend": "npm run test -w backend"
},
"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": {
"caniuse-lite": "^1.0.30001762",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.3",
"vitest": "^3.0.8"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "github:fortawesome/react-fontawesome",
"@kubernetes/client-node": "^1.2.0",
"@monaco-editor/react": "^4.7.0",
"@mui/icons-material": "^6.4.8",
"@mui/material": "^6.4.8",
"bootstrap": "^5.3.3",
"fortawesome": "^0.0.1-security",
"lucide-react": "^0.511.0",
"react-bootstrap": "^2.10.9"
}
}