-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.62 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.62 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
{
"name": "rancher-hub",
"version": "1.0.0",
"description": "Rancher Sync Manager for managing and synchronizing services across environments",
"private": true,
"workspaces": [
"apps/frontend",
"apps/backend"
],
"devDependencies": {
"concurrently": "^8.2.2",
"nx": "^22.2.3",
"vite-react-ssg": "^0.8.9"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "18.0.4",
"@nx/nx-darwin-x64": "18.0.4",
"@nx/nx-linux-arm64-gnu": "18.0.4",
"@nx/nx-linux-x64-gnu": "18.0.4",
"@nx/nx-win32-x64-msvc": "18.0.4",
"@rollup/rollup-darwin-arm64": "^4.53.3",
"@rollup/rollup-darwin-x64": "^4.53.3",
"@rollup/rollup-linux-arm64-gnu": "^4.53.3",
"@rollup/rollup-linux-x64-gnu": "^4.53.3",
"@rollup/rollup-win32-x64-msvc": "^4.53.3"
},
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd apps/backend && npm run start:dev",
"dev:frontend": "cd apps/frontend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd apps/backend && npm run build",
"build:frontend": "cd apps/frontend && npm run build",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd apps/backend && npm run test",
"test:frontend": "cd apps/frontend && npm run test",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "cd apps/backend && npm run lint",
"lint:frontend": "cd apps/frontend && npm run lint"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"@kubernetes/client-node": "^1.4.0"
}
}