-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
44
45
{
"name": "pickflix",
"version": "1.0.0",
"description": "Capstone project using data from Reelgood/Netflix and TMDB",
"main": "server.js",
"scripts": {
"client install": "npm install --prefix client",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run start\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brownav/pickflix.git"
},
"keywords": [
"npm"
],
"author": "brownav",
"license": "ISC",
"bugs": {
"url": "https://github.com/brownav/pickflix/issues"
},
"homepage": "https://github.com/brownav/pickflix#readme",
"dependencies": {
"async": "^2.6.1",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"concurrently": "^3.6.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"jsonfile": "^4.0.0",
"lodash": "^4.17.10",
"mongodb": "~3.1.1",
"mongoose": "^5.2.1"
},
"devDependencies": {
"nodemon": "^1.17.5"
},
"engines": {
"node": "8.11.3"
}
}