-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
{
"name": "react-redux-firebase",
"version": "0.0.1",
"description": "An example of using React, Redux and Firebase with Webpack",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --content-base docs",
"prod": "cross-env NODE_ENV=production webpack --output-filename docs/bundle.js"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"cross-env": "^6.0.0",
"firebase": "^3.7.8",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"repository": {
"type": "git",
"url": "[email protected]:vkammerer/react-redux-firebase.git"
},
"keywords": [],
"author": "Vincent Kammerer <[email protected]> (http://vincent-kammerer.com)",
"license": "MIT"
}