84 lines
2.5 KiB
JSON
84 lines
2.5 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/sockets/clients/index.js",
|
|
"./web-clients": "./lib/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/jobs/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",
|
|
"test": "node tests/index.js",
|
|
"test:api": "node tests/api.js",
|
|
"test:dev": "nodemon tests/index.js",
|
|
"lint": "prettier -w lib/ src/",
|
|
"seed": "node lib/database/seed.js"
|
|
},
|
|
"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.17.0",
|
|
"amqplib": "^0.10.3",
|
|
"chalk": "^5.0.1",
|
|
"dotenv": "^16.0.2",
|
|
"express": "^4.18.1",
|
|
"figlet": "^1.5.2",
|
|
"lodash": "^4.17.21",
|
|
"moment": "^2.29.4",
|
|
"path": "^0.12.7",
|
|
"pg-promise": "^10.12.0",
|
|
"postgres-migrations": "^5.3.0",
|
|
"socket.io": "^4.5.2",
|
|
"socket.io-client": "^4.5.2",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@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.2.3",
|
|
"@vitejs/plugin-react": "2.1.0",
|
|
"axios": "^0.27.2",
|
|
"caxa": "^2.1.0",
|
|
"concurrently": "^7.3.0",
|
|
"nodemon": "^2.0.19",
|
|
"prettier": "^2.7.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.3.0",
|
|
"readline-sync": "^1.4.10",
|
|
"rollup": "^2.79.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"vite": "3.1.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"rabbiteer": "gitlab:Dunemask/rabbiteer"
|
|
}
|
|
}
|