-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "HomeBudget",
"devDependencies": {
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.1",
"eslint": "^0.24.1",
"eslint-plugin-react": "^3.3.1",
"expect": "^1.9.0",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^2.1.5",
"webpack-dev-server": "^1.12.1",
"webpack-notifier": "^1.2.1"
},
"dependencies": {
"babel-loader": "^5.3.2",
"extract-text-webpack-plugin": "^0.8.2",
"lodash": "^3.10.1",
"node-sass": "^3.2.0",
"object-assign": "^4.0.1",
"react": "^0.13.3",
"react-bootstrap": "^0.25.2",
"react-redux": "^3.1.0",
"react-tools": "*",
"redux": "^3.0.2",
"redux-thunk": "^1.0.0",
"sass-loader": "^2.0.1",
"webpack": "^1.12.1",
"whatwg-fetch": "^0.9.0"
},
"scripts": {
"test": "karma start",
"start": "webpack-dev-server --config webpack/dev.config.js",
"start-dev": "webpack-dev-server --config webpack-dev-server.config.js",
"start-hot-dev": "webpack-dev-server --hot --inline --config webpack/hot-dev.config.js",
"build": "webpack -p --config webpack/production.config.js"
},
"license": "",
"engines": {
"node": ">= 0.10"
}
}