-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "keep-watching",
"version": "1.0.0",
"description": "Movie recommendation and review app",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"client-install": "cd client && npm install",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yashodeepchikte/Keep-Watching.git"
},
"author": "Yashodeep",
"license": "ISC",
"bugs": {
"url": "https://github.com/yashodeepchikte/Keep-Watching/issues"
},
"homepage": "https://github.com/yashodeepchikte/Keep-Watching#readme",
"dependencies": {
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"chalk": "^4.1.0",
"concurrently": "^5.2.0",
"config": "^3.3.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validator": "^6.6.0",
"http-proxy-middleware": "^1.0.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.20",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"path": "^0.12.7",
"uuid": "^8.2.0",
"uuidv4": "^6.1.1"
}
}