-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"private": true,
"name": "webpack-react-redux-firebase",
"version": "1.1.0",
"license": "MIT",
"keywords": [
"babel",
"webpack"
],
"repository": "eyesofkids/webpack-es6-startkit",
"description": "A startkit for client-side development in ES6.",
"scripts": {
"start": "webpack-dev-server --config webpack.config.js --progress --inline --colors --open",
"build": "webpack --config webpack-production.config.js --progress --colors"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.7",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.11.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"css-loader": "^0.28.7",
"firebase": "^4.5.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"style-loader": "^0.18.2"
}
}