forked from firebase/firebaseui-web-react
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.16 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
{
"scripts": {
"clean": "rm -rf ./public/bundle.* ./src/firebase-config.json",
"dev": "npm run clean && npm run createfirebaseconf; NODE_ENV=development webpack; npm run serve",
"build": "npm run clean && npm run createfirebaseconf; NODE_ENV=production webpack --mode production;",
"createfirebaseconf": "firebase apps:sdkconfig web --json > ./src/firebase-config.json",
"serve": "firebase serve"
},
"dependencies": {
"firebase": "^9.8.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-firebaseui": "file:../dist/"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"ajv": "^6.12.6",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.0.0",
"css-loader": "^6.7.1",
"cssnano": "^5.1.7",
"firebase-tools": "^10.8.0",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.13",
"postcss-loader": "^6.2.1",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"private": true
}