-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
41
42
43
44
45
{
"name": "pm2-vs-forever",
"version": "1.0.0",
"description": "A comparison suite to discern any performance or development gains of pm2 vs forever.",
"main": "./microservices/ms-express/auth/server.js",
"scripts": {
"start": "node ./microservices/ms-express/auth/server.js",
"start:express": "node ./microservices/ms-express/start-services.js",
"start:express:users": "node ./microservices/ms-express/users/server.js",
"start:express:ticketing": "node ./microservices/ms-express/ticketing/start-ticketing.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"pm2",
"forever",
"hapi",
"express",
"loopback",
"microservices",
"performance"
],
"author": "Joel Milligan <joeldevelops@gmail.com> (http://joeldev.io/)",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"debug": "~2.6.9",
"express": "^4.16.3",
"forever": "^0.15.3",
"hapi": "^17.5.1",
"http-errors": "~1.6.2",
"loopback": "^3.7.0",
"mongodb": "^3.0.10",
"mongoose": "^5.1.5",
"morgan": "~1.9.0",
"pm2": "^2.10.4",
"request": "^2.87.0",
"uuid4": "^1.0.0"
},
"devDependencies": {
"artillery": "^1.6.0-19"
}
}