-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.06 KB
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": "nodejs-microservices",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"service-shop": "node ./fw/services/shop-service.js",
"service-shop-stats": "node fw/services/shop-stats.js",
"service-math-pin": "node fw/services/math-pin-service.js",
"dev": "nodemon ./fw/index.js"
},
"keywords": [
"nodejs",
"microservices",
"express",
"javascript"
],
"author": "vc",
"license": "ISC",
"bugs": {
"url": "https://github.com/vc0754/nodejs-microservices/issues"
},
"homepage": "https://github.com/vc0754/nodejs-microservices#readme",
"dependencies": {
"express": "^4.17.1",
"pm2": "^3.5.1",
"seneca": "^3.16.0",
"seneca-entity": "^5.1.2",
"seneca-web": "^2.2.1",
"seneca-web-adapter-express": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"nodemon": "^1.19.2"
}
}