-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 980 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
{
"name": "server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"devStart": "nodemon ./bin/www",
"test": "jest --watch --runInBand",
"test:watch": "jest --watch",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix digifair && npm run build --prefix digifair"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^4.0.1",
"bcryptjs": "^2.4.3",
"concurrently": "^5.2.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "^3.1.2",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.13",
"morgan": "~1.9.1",
"opentok": "^2.10.0",
"react-countdown-now": "^2.1.2"
},
"devDependencies": {
"jest": "^26.0.1",
"supertest": "^4.0.2"
}
}