-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.59 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
{
"name": "choreography-based-saga-nodejs",
"version": "1.0.0",
"description": "Proof of concept for Choreography-based saga in NodeJS",
"main": "src/app.ts",
"dependencies": {
"amqplib": "^0.8.0",
"axios": "^0.25.0",
"body-parser": "^1.19.1",
"express": "^4.17.2",
"lodash": "^4.17.21",
"mongodb": "^4.3.1",
"validatorjs": "^3.22.1"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.178",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"concurrently": "^7.0.0",
"eslint": "^8.8.0",
"typescript": "^4.5.5"
},
"scripts": {
"start": "npm run compile && concurrently --kill-others \"npm run start:event\" \"npm run start:order\" \"npm run start:payment\" \"npm run start:shipment\" \"npm run start:stock\"",
"start:event": "node dist/event-service/app.js",
"start:order": "node dist/order-service/app.js",
"start:payment": "node dist/payment-service/app.js",
"start:shipment": "node dist/shipment-service/app.js",
"start:stock": "node dist/stock-service/app.js",
"compile": "tsc",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/herbertscruz/choreography-based-saga-nodejs.git"
},
"author": "Herberts Cruz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/herbertscruz/choreography-based-saga-nodejs/issues"
},
"homepage": "https://github.com/herbertscruz/choreography-based-saga-nodejs#readme"
}