qualiteer/package.json

68 lines
1.8 KiB
JSON
Raw Normal View History

2022-05-05 12:35:47 +00:00
{
"name": "qualiteer",
"version": "1.0.0",
"description": "QA Data Management",
"type": "module",
"exports": {
".": "./lib/index.js",
"./clients": "./lib/sockets/clients/index.js",
"./web-clients": "./lib/sockets/clients/web.index.js"
},
"scripts": {
2022-05-05 13:04:36 +00:00
"build:react": "BUILD_PATH='./dist' react-scripts build",
2022-05-05 12:35:47 +00:00
"start": "node bin/app.js",
"start:dev": "nodemon bin/app.js",
"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",
"test:dev": "nodemon tests/index.js"
},
"bin": {
"qualiteer": "./bin/app.js"
},
"author": "Dunemask",
"license": "LGPL-2.1-only",
"optionalDependencies": {
2022-05-05 20:30:24 +00:00
"rabbiteer": "gitlab:Dunemask/rabbiteer"
2022-05-05 12:35:47 +00:00
},
"dependencies": {
"@mui/icons-material": "^5.6.2",
"amqplib": "^0.8.0",
"chalk": "^5.0.1",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"figlet": "^1.5.2",
"moment": "^2.29.3",
"pg-promise": "^10.11.1",
"postgres-migrations": "^5.3.0",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"uuid": "^8.3.2"
},
"proxy": "http://localhost:52000/",
"devDependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.6.4",
"http-proxy-middleware": "^2.0.6",
"nodemon": "^2.0.15",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-scripts": "^5.0.1",
"readline-sync": "^1.4.10"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}