-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1009 Bytes
/
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
{
"name": "point-server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "npx supervisor ./bin/www",
"pm2": "pm2 start -i max ./bin/www",
"pm2-stop": "pm2 delete all",
"test": "mocha",
"coverage": "nyc --reporter=lcov --report-dir=coverage mocha"
},
"dependencies": {
"aws-sdk": "^2.1114.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"itowns": "^2.34.0",
"json-templates": "^4.1.0",
"morgan": "~1.9.1",
"proxy-agent": "^5.0.0",
"pug": "^3.0.2",
"request": "^2.88.2",
"url-exists": "^1.0.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"dotenv": "^10.0.0",
"loadtest": "^5.1.2",
"mocha": "^9.1.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"supervisor": "^0.12.0"
},
"nyc": {
"exclude": "services/itowns-common.js"
}
}