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",
"./clients": "./lib/sockets/clients/index.js",
"./web-clients": "./lib/sockets/clients/web.index.js"
},
2022-05-07 13:44:54 +00:00
"bin": {
"qualiteer": "./dist/app.js"
},
2022-05-05 12:35:47 +00:00
"scripts": {
2022-05-07 13:44:54 +00:00
"build:all": "npm run build:react && npm run export:executor",
"build:bin:executor": "caxa -m \"Unpacking, please wait...\" -i dist/bundles/ -o bin/executor -- \"{{caxa}}/node_modules/.bin/node\" \"{{caxa}}/qualiteer-executor.js\"",
"build:react": "react-scripts build",
"export:executor": "npm run pack:executor && npm run build:bin:executor",
"pack:executor": "rollup -c",
"start": "node dist/app.js",
"start:dev": "nodemon dist/app.js",
2022-05-05 12:35:47 +00:00
"start:dev:replit": "npm run start:dev & npm run start:react:replit",
"start:react": "react-scripts start",
"start:react:replit": "DANGEROUSLY_DISABLE_HOST_CHECK=true npm run start:react",
"test": "node tests/index.js",
2022-05-17 12:32:04 +00:00
"test:api": "node tests/api.js",
2022-05-05 12:35:47 +00:00
"test:dev": "nodemon tests/index.js"
},
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": {
"amqplib": "^0.8.0",
"chalk": "^5.0.1",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"figlet": "^1.5.2",
"moment": "^2.29.3",
2022-05-07 13:44:54 +00:00
"path": "^0.12.7",
2022-05-05 12:35:47 +00:00
"pg-promise": "^10.11.1",
"postgres-migrations": "^5.3.0",
2022-05-17 12:32:04 +00:00
"react-router-dom": "^6.3.0",
2022-05-05 12:35:47 +00:00
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
2022-05-07 13:44:54 +00:00
"@mui/icons-material": "^5.6.2",
2022-05-05 12:35:47 +00:00
"@mui/material": "^5.6.4",
2022-05-07 13:44:54 +00:00
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.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-05-05 12:35:47 +00:00
"nodemon": "^2.0.15",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-scripts": "^5.0.1",
2022-05-07 13:44:54 +00:00
"readline-sync": "^1.4.10",
"rollup": "^2.72.0",
"rollup-plugin-terser": "^7.0.2"
2022-05-05 12:35:47 +00:00
},
2022-05-07 13:44:54 +00:00
"optionalDependencies": {
"rabbiteer": "gitlab:Dunemask/rabbiteer"
},
"proxy": "http://localhost:52000/"
2022-05-05 12:35:47 +00:00
}