-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 846 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 846 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
{
"name": "level---01",
"version": "1.0.0",
"description": "",
"main": "microservices-orchestrator.js",
"scripts": {
"dev": "ts-node src/microservices-orchestrator.ts",
"api-gateway": "ts-node src/api-gateway.app.ts",
"service-discovery": "ts-node src/packages/service-discovery/server/index.ts",
"user-service": "ts-node src/apps/user/index.ts",
"order-service": "ts-node src/apps/order/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"axios": "^1.10.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"http-proxy-middleware": "^3.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.23",
"@types/node": "^20.19.9",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}