forked from contentful/contentful_express_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 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
{
"name": "contentful_express_tutorial",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm run production",
"heroku-prebuild": "npm install",
"dev": "cross-env NODE_ENV=development nodemon -e js,json,pug ./bin/www",
"production": "cross-env NODE_ENV=production node ./bin/www"
},
"config": {
"accessToken": "hKzqAoOzW_zEfrNjI5WrmRcAgG7ilgy2mhVtM7YzRo0",
"cmaToken": "CFPAT-FYaPZf0AGKSoxSHqDF_hqdenJd1u1uS4XFW9Ac3b8pk",
"space": "awnrbbsvgz9a",
"sessionSecret": "2C44-4D44-WppQ38S-some-random-4K3d"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.6.2",
"contentful": "^7.14.8",
"contentful-management": "^6.1.2",
"cookie-parser": "~1.4.3",
"cross-env": "^5.0.1",
"debug": "~2.2.0",
"express": "^4.16.4",
"express-session": "^1.17.1",
"helmet": "^2.2.0",
"morgan": "^1.9.1",
"nodemon": "^1.18.7",
"pug": "^3.0.0",
"serve-favicon": "^2.5.0"
}
}