qualiteer/package.json

81 lines
2.4 KiB
JSON
Raw Normal View History

2022-05-05 12:35:47 +00:00
{
"name": "qualiteer",
2022-05-08 01:36:22 +00:00
"version": "0.0.1",
2022-05-05 12:35:47 +00:00
"description": "QA Data Management",
2022-05-07 13:44:54 +00:00
"license": "LGPL-2.1-only",
"author": "Dunemask",
2022-05-05 12:35:47 +00:00
"type": "module",
"exports": {
".": "./lib/index.js",
2022-10-15 11:47:47 +00:00
"./clients": "./lib/common/sockets/clients/index.js",
"./web-clients": "./lib/common/sockets/clients/web.index.js"
2022-05-05 12:35:47 +00:00
},
2022-05-07 13:44:54 +00:00
"bin": {
"qualiteer": "./dist/app.js"
},
2022-05-05 12:35:47 +00:00
"scripts": {
2022-10-08 17:47:46 +00:00
"build:all": "concurrently \"npm run build:react\" \"npm run build:executor\" -n v,s -p -c yellow,green",
2022-10-15 11:47:47 +00:00
"build:executor": "node lib/common/executor/executor-bundler.js",
2022-07-06 21:24:54 +00:00
"build:react": "vite build",
2022-05-07 13:44:54 +00:00
"start": "node dist/app.js",
2022-10-08 17:47:46 +00:00
"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",
2022-10-15 11:47:47 +00:00
"lint": "prettier -w lib/ src/"
2022-05-05 12:35:47 +00:00
},
2022-05-07 13:44:54 +00:00
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
2022-05-05 12:35:47 +00:00
},
"dependencies": {
2022-10-08 17:47:46 +00:00
"@kubernetes/client-node": "^0.17.0",
"amqplib": "^0.10.3",
2022-05-05 12:35:47 +00:00
"chalk": "^5.0.1",
2022-10-08 17:47:46 +00:00
"dotenv": "^16.0.2",
"express": "^4.18.1",
2022-05-05 12:35:47 +00:00
"figlet": "^1.5.2",
2022-10-08 17:47:46 +00:00
"moment": "^2.29.4",
2022-05-07 13:44:54 +00:00
"path": "^0.12.7",
2022-10-08 17:47:46 +00:00
"pg-promise": "^10.12.0",
2022-05-05 12:35:47 +00:00
"postgres-migrations": "^5.3.0",
2022-10-08 17:47:46 +00:00
"socket.io": "^4.5.2",
"socket.io-client": "^4.5.2",
"uuid": "^9.0.0"
2022-05-05 12:35:47 +00:00
},
"devDependencies": {
2022-10-08 17:47:46 +00:00
"@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",
2022-05-07 13:44:54 +00:00
"@rollup/plugin-replace": "^4.0.0",
2022-10-08 17:47:46 +00:00
"@tanstack/react-query": "^4.2.3",
"@vitejs/plugin-react": "2.1.0",
2022-05-17 12:32:04 +00:00
"axios": "^0.27.2",
2022-05-07 13:44:54 +00:00
"caxa": "^2.1.0",
2022-10-08 17:47:46 +00:00
"concurrently": "^7.3.0",
2022-10-15 11:47:47 +00:00
"lodash.merge": "^4.6.2",
2022-10-08 17:47:46 +00:00
"nodemon": "^2.0.19",
2022-07-18 20:39:16 +00:00
"prettier": "^2.7.1",
2022-10-08 17:47:46 +00:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2022-08-12 21:25:09 +00:00
"react-router-dom": "^6.3.0",
2022-05-07 13:44:54 +00:00
"readline-sync": "^1.4.10",
2022-10-08 17:47:46 +00:00
"rollup": "^2.79.0",
2022-07-18 19:52:02 +00:00
"rollup-plugin-terser": "^7.0.2",
2022-10-08 17:47:46 +00:00
"vite": "3.1.0"
2022-05-05 12:35:47 +00:00
},
2022-05-07 13:44:54 +00:00
"optionalDependencies": {
2023-03-19 13:53:37 -04:00
"rabbiteer": "gitlab:Dunemask/rabbiteer#d2b8b92427a79ecccfa31d07269aec6fa5e550b3"
2022-10-08 17:47:46 +00:00
}
2022-05-05 12:35:47 +00:00
}