-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 733 Bytes
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
{
"name": "basic-auth",
"author": "Sekam Dex",
"description": "Basic auth example with react & firebase",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": { "dev-server": "webpack-dev-server" },
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"dependencies": {
"firebase": "^7.0.0",
"react": "^16.10.0",
"react-dom": "^16.10.0",
"react-router-dom": "^5.1.1"
}
}