forked from contentful/contentful_express_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 737 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 737 Bytes
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
{
"name": "contentful_express_tutorial",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm run production",
"heroku-prebuild": "npm install",
"dev": "NODE_EN=development nodemon ./bin/www",
"production": "NODE_EN=production node ./bin/www"
},
"config": {
"accessToken": "0e3ec801b5af550c8a1257e8623b1c77ac9b3d8fcfc1b2b7494e3cb77878f92a",
"space": "wl1z0pal05vy"
},
"dependencies": {
"body-parser": "~1.15.1",
"compression": "^1.6.2",
"contentful": "^3.6.4",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"express": "~4.13.4",
"helmet": "^2.2.0",
"jade": "~1.11.0",
"morgan": "~1.7.0",
"nodemon": "^1.11.0",
"serve-favicon": "~2.3.0"
}
}