-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.44 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
69
70
71
72
73
{
"name": "webpack-structure",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean:build": "rimraf build && mkdir build",
"clean:dist": "rimraf dist && mkdir dist",
"common": "npm run clean:build",
"browsersync": "npm run common && webpack --watch",
"dev": "npm run common && cp -R app/public/* build/ && webpack-dev-server --host 0.0.0.0 --devtool eval --progress --colors --inline --hot --content-base build --congfig webpack.config.js",
"dev-quiet": "npm run dev | grep -v '[[0-9]]'",
"deploy": "npm run clean:dist && cp -R app/public/* dist/ && webpack",
"tinypng": "tinypng -r dist/",
"lint": "eslint --fix --format 'node_modules/eslint-friendly-formatter' . --ext .js --ext .jsx || true",
"stats": "webpack --profile --json > stats.json"
},
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.6.4",
"babel-eslint": "^6.0.0-beta.6",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"browser-sync": "^2.9.8",
"browser-sync-webpack-plugin": "^1.0.0",
"css-loader": "^0.19.0",
"eslint": "^2.4.0",
"eslint-friendly-formatter": "^1.2.2",
"eslint-plugin-react": "^4.2.2",
"extract-text-webpack-plugin": "^0.8.2",
"favicons-webpack-plugin": "^0.0.6",
"file-loader": "^0.8.4",
"happypack": "^2.1.1",
"html-webpack-plugin": "^2.17.0",
"json-loader": "^0.5.4",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"node-sass": "^3.4.2",
"node-static": "^0.7.7",
"object-assign": "^4.0.1",
"postcss-loader": "^0.8.2",
"precss": "^1.4.0",
"react-hot-loader": "^1.3.0",
"rimraf": "^2.5.3",
"sass-loader": "^3.1.0",
"style-loader": "^0.12.4",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-browser-plugin-fork": "^1.0.8",
"webpack-dev-server": "^1.12.0",
"webpack-merge": "^0.2.0",
"webpack-shell-plugin": "^0.4.2"
},
"dependencies": {
"history": "^1.17.0",
"normalize.css": "^3.0.3",
"react": "^15.3.0",
"react-document-meta": "^2.0.0-rc2",
"react-dom": "^15.3.0",
"react-redux": "^4.0.0",
"react-router": "^2.4.0",
"react-router-redux": "^4.0.0",
"react-router-scroll": "^0.1.0",
"redux": "^3.0.4",
"redux-logger": "^2.0.4",
"redux-thunk": "^1.0.0"
}
}