Updated Core
This commit is contained in:
parent
8b136eb565
commit
88ebfe4da2
25 changed files with 5678 additions and 1932 deletions
86
package.json
86
package.json
|
@ -2,56 +2,31 @@
|
|||
"name": "qualiteer",
|
||||
"version": "1.0.0",
|
||||
"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:react": "BUILD_PATH='./dist' react-scripts build",
|
||||
"start": "node bin/app.js",
|
||||
"start:dev": "nodemon bin/app.js",
|
||||
"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",
|
||||
"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": {
|
||||
"rabbiteer": "gitlab:Dunemask/rabbiteer"
|
||||
},
|
||||
"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%",
|
||||
|
@ -63,5 +38,40 @@
|
|||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
}
|
||||
},
|
||||
"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",
|
||||
"path": "^0.12.7",
|
||||
"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"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emotion/react": "^11.9.0",
|
||||
"@emotion/styled": "^11.8.1",
|
||||
"@mui/icons-material": "^5.6.2",
|
||||
"@mui/material": "^5.6.4",
|
||||
"@rollup/plugin-commonjs": "^22.0.0",
|
||||
"@rollup/plugin-node-resolve": "^13.3.0",
|
||||
"@rollup/plugin-replace": "^4.0.0",
|
||||
"caxa": "^2.1.0",
|
||||
"nodemon": "^2.0.15",
|
||||
"react": "^18.1.0",
|
||||
"react-dom": "^18.1.0",
|
||||
"react-scripts": "^5.0.1",
|
||||
"readline-sync": "^1.4.10",
|
||||
"rollup": "^2.72.0",
|
||||
"rollup-plugin-terser": "^7.0.2"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"rabbiteer": "gitlab:Dunemask/rabbiteer"
|
||||
},
|
||||
"proxy": "http://localhost:52000/"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue