-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.25 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
{
"name": "nodejs-microservices",
"version": "1.0.0",
"scripts": {
"start": "cross-env SERVICE_TYPE=dev ts-node src/index.ts",
"build": "tsc",
"dev": "cross-env SERVICE_TYPE=dev nodemon --exec ts-node src/index.ts",
"dev-a": "cross-env SERVICE_TYPE=service-a PORT=3001 nodemon --exec ts-node src/index.ts",
"dev-b": "cross-env SERVICE_TYPE=service-b PORT=3002 nodemon --exec ts-node src/index.ts",
"dev-c": "cross-env SERVICE_TYPE=service-c PORT=3003 nodemon --exec ts-node src/index.ts"
},
"dependencies": {
"dotenv": "^16.4.5",
"elastic-apm-node": "^4.7.0",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"zipkin-context-cls": "0.19.2-alpha.7",
"zipkin-instrumentation-express": "^0.21.0",
"zipkin-instrumentation-fetch": "^0.21.0",
"zipkin-transport-http": "^0.21.0"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node": "^20.14.8",
"@types/node-fetch": "^2.6.11",
"@types/zipkin-context-cls": "^0.11.7",
"@types/zipkin-instrumentation-fetch": "^0.11.13",
"cross-env": "^7.0.3",
"nodemon": "^3.1.4",
"ts-node": "^9.0.0",
"typescript": "^5.5.2"
}
}