-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.55 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
{
"name": "firebase-react-quickstart",
"version": "1.0.0",
"description": "Simple full JS WebApp boilerplate with React and Firebase, Auth and simple CRUD operation with real time updates.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open --hot --inline",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "https://github.com/spagnolodesign/firebase-react-quickstart"
},
"keywords": [],
"author": "https://github.com/spagnolodesign",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "https://github.com/spagnolodesign/firebase-react-quickstart/blob/master/README.md",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.7",
"mini-css-extract-plugin": "^0.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"uuid": "^3.2.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"dotenv-webpack": "^1.5.5",
"firebase": "^4.13.0",
"history": "^4.7.2",
"npm": "^5.8.0",
"react-beautiful-dnd": "^6.0.1",
"react-router-dom": "^4.2.2",
"redux-thunk": "^2.2.0"
}
}