Link K8S deps properly
This commit is contained in:
parent
0ac77cdb15
commit
f0260fc819
64 changed files with 4282 additions and 3069 deletions
59
package.json
59
package.json
|
@ -14,18 +14,18 @@
|
|||
"qualiteer": "./dist/app.js"
|
||||
},
|
||||
"scripts": {
|
||||
"build:all": "npm run build:react && npm run build:executor",
|
||||
"build:all": "concurrently \"npm run build:react\" \"npm run build:executor\" -n v,s -p -c yellow,green",
|
||||
"build:executor": "node lib/jobs/executor/executor-bundler.js",
|
||||
"build:react": "vite build",
|
||||
"start": "node dist/app.js",
|
||||
"start:dev": "nodemon dist/app.js",
|
||||
"start:dev:replit": "npm run start:react:replit & (sleep 30 && npm run start:dev)",
|
||||
"start:react": "vite preview",
|
||||
"start:react:replit": "vite --host",
|
||||
"dev:server": "nodemon dist/app.js",
|
||||
"dev:react": "vite",
|
||||
"start:dev": "concurrently -k \"QUALITEER_DEV_PORT=52025 npm run dev:server\" \" QUALITEER_VITE_DEV_PORT=52000 QUALITEER_VITE_BACKEND_URL=http://localhost:52025 npm run dev:react\" -n s,v -p -c green,yellow",
|
||||
"test": "node tests/index.js",
|
||||
"test:api": "node tests/api.js",
|
||||
"test:dev": "nodemon tests/index.js",
|
||||
"lint": "prettier -w lib/ src/"
|
||||
"lint": "prettier -w lib/ src/",
|
||||
"seed": "node lib/database/seed.js"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
|
@ -40,44 +40,45 @@
|
|||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"amqplib": "^0.8.0",
|
||||
"@kubernetes/client-node": "^0.17.0",
|
||||
"amqplib": "^0.10.3",
|
||||
"chalk": "^5.0.1",
|
||||
"dotenv": "^16.0.0",
|
||||
"express": "^4.17.2",
|
||||
"dotenv": "^16.0.2",
|
||||
"express": "^4.18.1",
|
||||
"figlet": "^1.5.2",
|
||||
"lodash": "^4.17.21",
|
||||
"moment": "^2.29.3",
|
||||
"moment": "^2.29.4",
|
||||
"path": "^0.12.7",
|
||||
"pg-promise": "^10.11.1",
|
||||
"pg-promise": "^10.12.0",
|
||||
"postgres-migrations": "^5.3.0",
|
||||
"socket.io": "^4.4.1",
|
||||
"socket.io-client": "^4.4.1",
|
||||
"uuid": "^8.3.2"
|
||||
"socket.io": "^4.5.2",
|
||||
"socket.io-client": "^4.5.2",
|
||||
"uuid": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/react": "^11.9.0",
|
||||
"@emotion/styled": "^11.8.1",
|
||||
"@mui/icons-material": "^5.6.2",
|
||||
"@mui/material": "^5.6.4",
|
||||
"@rollup/plugin-commonjs": "^22.0.0",
|
||||
"@rollup/plugin-node-resolve": "^13.3.0",
|
||||
"@emotion/react": "^11.10.4",
|
||||
"@emotion/styled": "^11.10.4",
|
||||
"@mui/icons-material": "^5.10.3",
|
||||
"@mui/material": "^5.10.4",
|
||||
"@rollup/plugin-commonjs": "^22.0.2",
|
||||
"@rollup/plugin-node-resolve": "^14.0.0",
|
||||
"@rollup/plugin-replace": "^4.0.0",
|
||||
"@tanstack/react-query": "^4.0.0",
|
||||
"@vitejs/plugin-react": "1.1.1",
|
||||
"@tanstack/react-query": "^4.2.3",
|
||||
"@vitejs/plugin-react": "2.1.0",
|
||||
"axios": "^0.27.2",
|
||||
"caxa": "^2.1.0",
|
||||
"nodemon": "^2.0.15",
|
||||
"concurrently": "^7.3.0",
|
||||
"nodemon": "^2.0.19",
|
||||
"prettier": "^2.7.1",
|
||||
"react": "^18.1.0",
|
||||
"react-dom": "^18.1.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-router-dom": "^6.3.0",
|
||||
"readline-sync": "^1.4.10",
|
||||
"rollup": "^2.72.0",
|
||||
"rollup": "^2.79.0",
|
||||
"rollup-plugin-terser": "^7.0.2",
|
||||
"vite": "2.7.0"
|
||||
"vite": "3.1.0"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"rabbiteer": "gitlab:Dunemask/rabbiteer"
|
||||
},
|
||||
"proxy": "http://localhost:52000/"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue