-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "swifty-order-service",
"version": "1.0.0",
"description": "Order Service for Swifty",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "env-cmd -f .env.development node index.js",
"start:staging": "env-cmd -f .env.staging node index.js",
"start:production": "env-cmd -f .env.production node index.js",
"start:development": "env-cmd -f .env.development node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swifty-The-Delivery-Ecosystem/Order-Service.git"
},
"author": "Tushar Bansal",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swifty-The-Delivery-Ecosystem/Order-Service/issues"
},
"homepage": "https://github.com/Swifty-The-Delivery-Ecosystem/Order-Service#readme",
"dependencies": {
"ably": "^2.0.2",
"amqplib": "^0.10.3",
"axios": "^1.6.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"env-cmd": "^10.1.0",
"express": "^4.18.2",
"http": "^0.0.1-security",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"nodemon": "^3.0.3",
"socket.io": "^4.7.4"
}
}