-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 2.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "integration-processor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch-extract": "nodemon ./services/etlProcessors/extractService/server.js",
"watch-transform": "nodemon ./services/etlProcessors/transformService/server.js",
"watch-load": "nodemon ./services/etlProcessors/loadService/server.js",
"watch-scheduler": "nodemon ./services/schedulerService/server.js",
"watch-queue-extract": "nodemon ./queueMocks/queueExtract/server.js",
"watch-queue-transform": "nodemon ./queueMocks/queueTransform/server.js",
"watch-queue-load": "nodemon ./queueMocks/queueLoad/server.js",
"extract": "nodemon ./services/etlProcessors/extractService/server.js",
"transform": "nodemon ./services/etlProcessors/transformService/server.js",
"load": "nodemon ./services/etlProcessors/loadService/server.js",
"queue-extract": "node ./queueMocks/queueExtract/server.js",
"queue-transform": "node ./queueMocks/queueTransform/server.js",
"queue-load": "node ./queueMocks/queueLoad/server.js",
"watch": "nodemon ./start.js",
"postinstall": "(cd core-lib && npm install);",
"dev": "concurrently --kill-others \"npm run watch-extract\" \"npm run watch-transform\" \"npm run watch-load\" \"npm run watch-queue-extract\" \"npm run watch-queue-transform\" \"npm run watch-queue-load\"",
"dev-without-load": "concurrently --kill-others \"npm run watch-extract\" \"npm run watch-transform\" \"npm run watch-scheduler\" \"npm run watch-queue-extract\" \"npm run watch-queue-transform\" \"npm run watch-queue-load\"",
"dev-without-extract": "concurrently --kill-others \"npm run watch-load\" \"npm run watch-transform\" \"npm run watch-scheduler\" \"npm run watch-queue-extract\" \"npm run watch-queue-transform\" \"npm run watch-queue-load\"",
"dev-without-transform": "concurrently --kill-others \"npm run watch-load\" \"npm run watch-extract\" \"npm run watch-scheduler\" \"npm run watch-queue-extract\" \"npm run watch-queue-transform\" \"npm run watch-queue-load\"",
"dev-queues": "concurrently --kill-others \"npm run queue-extract\" \"npm run queue-transform\" \"npm run queue-load\"",
"dev-queue": "concurrently --kill-others \"npm run queue-load\"",
"dev-etl": "concurrently --kill-others \"npm run extract\" \"npm run transform\" \"npm run load\""
},
"keywords": [],
"author": "oded",
"license": "ISC",
"workspaces": [
"./services/etlProcessors/extractService/",
"./services/etlProcessors/transformService/",
"./services/etlProcessors/loadService/"
],
"dependencies": {
"body-parser": "^1.19.0",
"config": "3.3.6",
"express": "^4.17.1",
"mongodb": "^3.6.6",
"mongoose": "^5.12.3"
},
"devDependencies": {
"concurrently": "^6.0.1",
"nodemon": "^2.0.7"
}
}