forked from stolostron/search-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.58 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
{
"name": "@stolostron/search-ui",
"version": "2.4.0",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"setup": "./setup.sh",
"postinstall": "concurrently npm:*:ci",
"frontend:ci": "cd frontend && npm ci",
"backend:ci": "cd backend && npm ci",
"test": "concurrently npm:*:test",
"frontend:test": "cd frontend && npm test",
"backend:test": "cd backend && npm test",
"lint": "concurrently npm:*:lint",
"frontend:lint": "cd frontend && npm run lint",
"backend:lint": "cd backend && npm run lint",
"check": "concurrently npm:*:check",
"check:fix": "concurrently npm:*:check:fix",
"frontend:check": "cd frontend && npm run check",
"backend:check": "cd backend && npm run check",
"start": "concurrently npm:frontend npm:backend -n 'frontend, backend' -c blue,cyan",
"backend": "cd backend && npm start",
"frontend": "cd frontend && npm start",
"build": "concurrently npm:*:build",
"backend:build": "cd backend && npm run build",
"frontend:build": "cd frontend && npm run build",
"update": "npm run backend:update && npm run frontend:update",
"backend:update": "cd backend && npm run update",
"frontend:update": "cd frontend && npm run update"
},
"dependencies": {
"@kubernetes/client-node": "^0.15.0",
"@material-ui/styles": "^4.11.4",
"concurrently": "^6.2.2",
"typescript": "^4.3.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"serve": "^11.3.2"
}
}