-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.38 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.38 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "node-contentful",
"version": "0.0.1",
"private": true,
"scripts": {
"prestart": "npm run -s build",
"start": "node ./bin/www",
"dev": "nodemon ./bin/www --exec \"node -r dotenv/config -r babel-register\"",
"clean": "rimraf dist",
"build": "npm run clean && mkdir -p dist && babel src -s -D -d dist",
"lint": "esw -w src test"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.2",
"body-parser": "~1.17.1",
"contentful": "^4.4.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"express": "~4.15.2",
"lodash": "^4.17.4",
"markdown": "^0.5.0",
"morgan": "~1.8.1",
"node-sass-middleware": "0.9.8",
"pug": "~2.0.0-beta11",
"serve-favicon": "~2.4.2",
"url-join": "^2.0.2"
},
"devDependencies": {
"babel-register": "^6.24.1",
"dotenv": "^4.0.0",
"eslint": "^4.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-watch": "^3.1.2",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1"
},
"eslintConfig": {
"plugins": [
"import"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"node": true
},
"extends": [
"eslint:recommended"
]
}
}