-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"dependencies": {
"@firebase/messaging": "^0.3.15",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"circular-json": "^0.5.9",
"concurrently": "^4.1.0",
"config": "^3.0.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"firebase": "^5.9.2",
"firebase-admin": "^7.2.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.4.19",
"nodemailer": "^6.1.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"recombee-api-client": "^2.4.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"jest": "^24.5.0",
"nodemon": "^1.18.10"
},
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server",
"server": "nodemon server",
"test": "jest --runInBand",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Overflow",
"license": "ISC"
}