-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.08 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
{
"name": "react-webpack-static",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --config webpack.dev.config.js --hot --inline --progress --color --history-api-fallback",
"build": "rm -rf public && webpack -p --config webpack.build.config.js --progress --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jarindr/react-webpack-static.git"
},
"author": "jarindr",
"license": "ISC",
"bugs": {
"url": "https://github.com/jarindr/react-webpack-static/issues"
},
"homepage": "https://github.com/jarindr/react-webpack-static#readme",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-script": "^1.0.0",
"babel-preset-react": "^6.5.0",
"critical": "^0.7.3",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"eslint": "^2.12.0",
"eslint-config-standard": "^5.3.5",
"eslint-config-standard-jsx": "^1.2.1",
"eslint-config-standard-react": "^2.4.0",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.2.1",
"eslint-plugin-standard": "^1.3.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gulp": "^3.9.1",
"gulp-filter": "^4.0.0",
"gulp-size": "^2.1.0",
"html-webpack-plugin": "^2.21.0",
"postcss-loader": "^0.9.1",
"raw-loader": "^0.5.1",
"react-hot-loader": "^1.3.0",
"static-site-generator-webpack-plugin": "^2.1.0",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"classnames": "^2.2.5",
"history": "^3.0.0",
"normalize.css": "^4.1.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-helmet": "^3.1.0",
"react-router": "^2.4.1",
"react-router-scroll": "^0.3.2"
}
}