-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 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
37
38
39
40
41
42
{
"name": "firebaseui-react",
"version": "1.3.14",
"license": "Apache-2.0",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack serve --config webpack.config.dev.js --open",
"publish": "rm -rf ./dist/ && npm run build && npm publish",
"test": "jest"
},
"dependencies": {},
"peerDependencies": {
"firebase": "^10",
"react": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"autoprefixer": "^10.0.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"eslint": "^8",
"eslint-config-next": "14.0.1",
"firebase": "^10.7.1",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}