
Co-authored-by: dunemask <dunemask@gmail.com> Reviewed-on: https://gitea.dunemask.net/elysium/qualiteer/pulls/8
80 lines
2.4 KiB
JSON
80 lines
2.4 KiB
JSON
{
|
|
"name": "qualiteer",
|
|
"version": "0.0.1",
|
|
"description": "QA Data Management",
|
|
"license": "LGPL-2.1-only",
|
|
"author": "Dunemask",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./lib/index.js",
|
|
"./clients": "./lib/common/sockets/clients/index.js",
|
|
"./web-clients": "./lib/common/sockets/clients/web.index.js"
|
|
},
|
|
"bin": {
|
|
"qualiteer": "./dist/app.js"
|
|
},
|
|
"scripts": {
|
|
"build:all": "concurrently \"npm run build:react\" \"npm run build:executor\" -n v,s -p -c yellow,green",
|
|
"build:executor": "node lib/common/executor/executor-bundler.js",
|
|
"build:react": "vite build",
|
|
"start": "node dist/app.js",
|
|
"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",
|
|
"lint": "prettier -w lib/ src/"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@kubernetes/client-node": "^0.18.1",
|
|
"amqplib": "^0.10.3",
|
|
"chalk": "^5.3.0",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"figlet": "^1.6.0",
|
|
"moment": "^2.29.4",
|
|
"path": "^0.12.7",
|
|
"pg-promise": "^11.5.4",
|
|
"postgres-migrations": "^5.3.0",
|
|
"socket.io": "^4.7.2",
|
|
"socket.io-client": "^4.7.2",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@emotion/react": "^11.11.1",
|
|
"@emotion/styled": "^11.11.0",
|
|
"@mui/icons-material": "^5.14.8",
|
|
"@mui/material": "^5.14.8",
|
|
"@rollup/plugin-commonjs": "^25.0.4",
|
|
"@rollup/plugin-node-resolve": "^15.2.1",
|
|
"@rollup/plugin-replace": "^5.0.2",
|
|
"@rollup/plugin-terser": "^0.4.3",
|
|
"@tanstack/react-query": "^4.35.0",
|
|
"@vitejs/plugin-react": "4.0.4",
|
|
"axios": "^1.5.0",
|
|
"caxa": "^3.0.1",
|
|
"concurrently": "^8.2.1",
|
|
"lodash.merge": "^4.6.2",
|
|
"nodemon": "^3.0.1",
|
|
"prettier": "^3.0.3",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.15.0",
|
|
"readline-sync": "^1.4.10",
|
|
"rollup": "^3.29.0",
|
|
"vite": "4.4.9"
|
|
},
|
|
"optionalDependencies": {
|
|
"rabbiteer": "gitlab:Dunemask/rabbiteer#d2b8b92427a79ecccfa31d07269aec6fa5e550b3"
|
|
}
|
|
}
|