-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "trowel",
"version": "0.0.0",
"description": "React application boilerplate",
"main": "index.js",
"scripts": {
"start": "node server",
"start:prod": "NODE_ENV=production node server",
"build": "NODE_ENV=production webpack --config ./webpack/webpack.config.js",
"lint": "eslint --ext .js,.jsx ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"private": true,
"author": "frux",
"license": "ISC",
"dependencies": {
"config": "^1.24.0",
"express": "^4.14.0",
"morgan": "^1.7.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^4.0.0",
"react-hot-loader": "3.0.0-beta.6",
"react-redux": "^5.0.2",
"react-router-dom": "^4.0.0",
"redux": "^3.6.0",
"trowel-tools": "0.0.3"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-require-ignore": "^0.1.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-node6": "^0.4.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"css-loader": "^0.27.1",
"eslint": "^3.13.1",
"eslint-config-xo": "^0.17.0",
"eslint-config-xo-react": "^0.10.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"null-loader": "^0.1.1",
"postcss": "^5.2.11",
"postcss-cssnext": "^2.9.0",
"postcss-loader": "^1.2.2",
"style-loader": "^0.13.1",
"svg-url-loader": "^1.1.1",
"svgo-loader": "^1.1.2",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0",
"webpack-node-externals": "^1.5.4"
}
}