-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "react-skeleton",
"version": "0.0.2",
"description": "skeleton for react.",
"main": "index.js",
"scripts": {
"start": "npm run start:prod || npm run start:dev",
"start:dev": "webpack-dev-server --inline --content-base public/ --history-api-fallback",
"start:prod": "npm run build && node server.bundle.js",
"build:client": "webpack",
"build:server": "webpack --config webpack.server.config.js",
"build": "npm run build:client && npm run build:server"
},
"author": {
"name": "Hiroyuki Tanaka",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"compression": "^1.6.2",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"express": "^4.13.4",
"json-loader": "^0.5.4",
"path": "^0.12.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-node-externals": "^1.2.0"
},
"dependencies": {
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-router": "^2.4.1"
}
}