-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "server-render",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "DEBUG=server-render/* nodemon ./bin/www",
"build": "rm -rf dist/ && babel --watch src/ -d dist/",
"webpack:server": "webpack --debug --devtool=eval --watch"
},
"dependencies": {
"body-parser": "~1.16.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.1",
"express": "~4.14.1",
"morgan": "~1.8.1",
"pug": "~2.0.0-beta2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^3.0.2",
"request": "^2.79.0",
"serve-favicon": "~2.4.1"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"eslint-config-xo": "^0.17.0",
"eslint-config-xo-react": "^0.10.0",
"eslint-config-xo-space": "^0.15.0",
"eslint-plugin-babel": "^4.1.0",
"eslint-plugin-react": "^6.10.0",
"nodemon": "^1.11.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"xo": "^0.17.1"
},
"xo": {
"esnext": true,
"space": 2,
"globals": [
"window",
"document",
"fetch"
],
"extends": [
"xo",
"xo-react/space"
]
}
}