-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.4 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"scripts": {
"develop": "concurrent \"npm run develop:webpack\" \"npm run develop:test\"",
"develop:webpack": "webpack-dev-server -d --content-base ./public",
"develop:test": "karma start --single-run=false",
"bundle": "webpack --config ./webpack.production.config.js -p --content-base ./public",
"test": "karma start && npm run lint",
"lint": "eslint ./",
"postinstall": "bower install"
},
"eslintConfig": {
"env": {
"node": true
},
"parser": "babel-eslint",
"rules": {
"quotes": [
2,
"single",
"avoid-escape"
],
"comma-dangle": [
0
],
"no-underscore-dangle": [
0
],
"no-empty": [
0
],
"no-trailing-spaces": [
0
],
"no-use-before-define": [
2,
"nofunc"
]
},
"ecmaFeatures": {
"templateStrings": true
}
},
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-eslint": "^3.1.20",
"babel-loader": "^5.3.1",
"babel-plugin-closure-elimination": "0.0.1",
"babel-plugin-dead-code-elimination": "^1.0.2",
"babel-plugin-react-constant-elements": "^1.0.3",
"babel-plugin-react-require": "^1.0.2",
"babel-plugin-remove-debugger": "^1.0.1",
"babel-plugin-undefined-to-void": "^1.1.6",
"babel-runtime": "^5.6.15",
"bower": "^1.4.1",
"chokidar-cli": "^0.2.1",
"classnames": "^2.1.2",
"concurrently": "0.0.5",
"css-loader": "^0.14.5",
"d3": "^3.5.5",
"defer-decorator": "^1.0.0",
"eslint": "^0.23.0",
"eslint-loader": "^0.14.0",
"eslint-plugin-react": "^2.5.2",
"expect.js": "^0.3.1",
"file-loader": "^0.8.4",
"font-awesome": "^4.3.0",
"immutable": "^3.7.2",
"karma": "^0.12.31",
"karma-cli": "0.0.4",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sourcemap-loader": "^0.3.4",
"karma-webpack": "^1.5.1",
"less": "^2.5.0",
"less-loader": "^2.2.0",
"loaders.css": "^0.1.1",
"mocha": "^2.2.4",
"normalize.css": "^3.0.3",
"object-assign": "^3.0.0",
"phantomjs-polyfill": "0.0.1",
"react": "^0.13.3",
"react-loaders": "^1.2.3",
"react-router": "^1.0.0-beta3",
"redux": "^0.12.0",
"style-loader": "^0.12.1",
"url-loader": "^0.5.6",
"webpack": "^1.9.11",
"webpack-dev-server": "^1.9.0"
}
}