-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.03 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "openwebnet-site",
"version": "1.0.0",
"description": "openwebnet-site",
"license": "MIT",
"homepage": "http://openwebnet.xyz",
"repository": {
"type": "git",
"url": "git+https://github.com/openwebnet/openwebnet-site.git"
},
"engines": {
"node": "6.2.x",
"npm": "3.9.x"
},
"scripts": {
"clean": "rimraf dist",
"copy": "copyfiles -f CNAME favicon.ico ./dist",
"lint": "eslint src",
"build": "npm run clean && npm run copy && webpack --config",
"dist": "cross-env NODE_ENV=production npm run build -- webpack.config.prod.js",
"start": "npm run build -- webpack.config.dev.js && node devServer.js",
"publish": "git subtree push --prefix dist origin gh-pages"
},
"devDependencies": {
"autoprefixer": "^6.3.1",
"babel-core": "^6.3.15",
"babel-eslint": "^5.0.0-beta4",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.0",
"copyfiles": "^0.2.1",
"cross-env": "^1.0.6",
"css-loader": "^0.23.1",
"eslint": "^2.5.3",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^4.2.3",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.14.0",
"node-sass": "^3.4.2",
"open": "0.0.5",
"postcss-loader": "^0.8.2",
"redux-devtools": "^3.0.1",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.2",
"redux-logger": "^2.4.0",
"rimraf": "^2.4.3",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.12",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"dependencies": {
"flexboxgrid": "^6.3.0",
"material-ui": "^0.14.4",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-redux": "^4.1.1",
"react-tap-event-plugin": "^0.2.2",
"redux-thunk": "^2.0.1"
}
}