-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "react-starter",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+/~https://github.com/petertait/react-starter"
},
"author": {
"name": "Peter Tait",
"email": "contact@petertait.com",
"url": "http://petertait.com"
},
"dependencies": {
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-router": "^2.4.1"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.23.1",
"postcss-advanced-variables": "^1.2.2",
"postcss-color-function": "^2.0.0",
"postcss-conditionals": "^2.0.1",
"postcss-for": "^2.0.1",
"postcss-grid": "^2.0.0",
"postcss-loader": "^0.9.1",
"postcss-nesting": "^2.3.0",
"rucksack-css": "^0.8.5",
"eslint": "^2.11.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"react-css-modules": "^3.7.6",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"start": "webpack-dev-server --history-api-fallback --host 0.0.0.0 --hot --inline --progress",
"clean": "rm -rf build/scripts",
"build": "NODE_ENV=production webpack -p",
"publish": "NODE_ENV=production webpack -p; surge build"
}
}