Revamp Job flow
This commit is contained in:
parent
945afdfbbe
commit
4a0a4b29a5
86 changed files with 592 additions and 608 deletions
14
package.json
14
package.json
|
@ -7,25 +7,21 @@
|
|||
"type": "module",
|
||||
"exports": {
|
||||
".": "./lib/index.js",
|
||||
"./clients": "./lib/sockets/clients/index.js",
|
||||
"./web-clients": "./lib/sockets/clients/web.index.js"
|
||||
"./clients": "./lib/common/sockets/clients/index.js",
|
||||
"./web-clients": "./lib/common/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:executor": "node lib/common/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"
|
||||
"lint": "prettier -w lib/ src/"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
|
@ -46,7 +42,6 @@
|
|||
"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",
|
||||
|
@ -68,6 +63,7 @@
|
|||
"axios": "^0.27.2",
|
||||
"caxa": "^2.1.0",
|
||||
"concurrently": "^7.3.0",
|
||||
"lodash.merge": "^4.6.2",
|
||||
"nodemon": "^2.0.19",
|
||||
"prettier": "^2.7.1",
|
||||
"react": "^18.2.0",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue