-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
34 lines (34 loc) · 961 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
{
"name": "corona",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "nodemon ./bin/www",
"gendoc": "apidoc -i ./routes -o ./public",
"start:staging": "PORT=3001 pm2 start --name \"corona-web-staging\" ./bin/www",
"start:production": "PORT=3000 pm2 start --name \"corona-web-production\" ./bin/www",
"test": "mocha --exit --colors --timeout 20000 ./test/*.js"
},
"dependencies": {
"apidoc": "^0.20.0",
"axios": "^0.19.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "~2.6.1",
"express": "~4.16.1",
"express-async-handler": "^1.1.4",
"express-rate-limit": "^5.1.1",
"express-redis-cache": "^1.1.3",
"http-errors": "~1.6.3",
"mocha": "^7.1.0",
"moment": "^2.24.0",
"morgan": "~1.9.1",
"mysql2": "^2.1.0",
"newrelic": "^6.5.0",
"puppeteer": "^2.1.1"
}
}