forked from keathley/webpack-react-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.16 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
74
75
76
77
78
79
{
"name": "webpack-react-skeleton",
"version": "0.3.0",
"description": "Keathley's skeleton for building apps with react and webpack",
"main": "bundle.js",
"scripts": {
"env": "env",
"start": "webpack-dev-server --hot",
"test": "mocha --require app/__tests__/test_helper.js --compilers jsx?:babel-core/register 'app/**/*_test.@(js|jsx)'",
"test:watch": "npm run test -- --watch",
"build": "NODE_ENV=production webpack -p --config webpack.config.js",
"clean": "test -d dist && rm -r dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/keathley/webpack-react-skeleton.git"
},
"keywords": [
"webpack",
"babel",
"postcss",
"react",
"eslint",
"skeleton"
],
"author": "Chris Keathley",
"license": "MIT",
"bugs": {
"url": "https://github.com/keathley/webpack-react-skeleton/issues"
},
"homepage": "https://github.com/keathley/webpack-react-skeleton",
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"react-hot-loader/babel"
]
},
"dependencies": {
"history": "^3.0.0",
"immutable": "^3.7.5",
"normalize.css": "^4.2.0",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-router": "^2.6.0"
},
"devDependencies": {
"autoprefixer": "^6.1.2",
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"chai": "^3.4.1",
"chai-immutable": "^1.5.3",
"css-loader": "^0.23.0",
"css-modules-require-hook": "^4.0.1",
"css-mqpacker": "^5.0.1",
"csswring": "^5.1.0",
"enzyme": "^2.4.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"mocha": "^2.3.4",
"postcss": "^5.0.12",
"postcss-color-function": "^2.0.0",
"postcss-loader": "^0.9.1",
"postcss-modules-values": "^1.1.1",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"react-addons-test-utils": "^15.2.1",
"react-hot-loader": "^3.0.0-beta.6",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.0",
"webpack-dev-server": "^1.9.0"
}
}