-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 888 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 888 Bytes
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
{
"name": "nodejs_rabbitmq_microservices",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_CONFIG_DIR=./src/config jest --detectOpenHandles",
"start:m1": "node src/services/m1.js",
"start:m2": "node src/services/m2.js",
"start:all": "concurrently \"npm run start:m1\" \"npm run start:m2\""
},
"keywords": [],
"author": "Nilaier",
"license": "GPL-3.0",
"dependencies": {
"amqplib": "^0.10.3",
"body-parser": "^1.20.4",
"config": "^3.3.9",
"dotenv": "^16.3.1",
"express": "^4.22.1",
"express-rate-limit": "^6.9.0",
"uuid": "^9.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"axios": "^1.8.2",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"formidable": "^3.5.4",
"jest": "^29.6.2",
"ts-jest": "^29.1.1"
}
}