forked from firebase/firebaseui-web-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "react-firebaseui",
"version": "4.0.0",
"description": "React wrapper for firebaseui: Javascript library for customizable UI on top of Firebase SDK",
"files": [
"FirebaseAuth.d.ts",
"FirebaseAuth.js",
"FirebaseAuth.js.map",
"index.d.ts",
"index.js",
"index.js.map",
"LICENSE",
"package.json",
"README.md",
"StyledFirebaseAuth.d.ts",
"StyledFirebaseAuth.js",
"StyledFirebaseAuth.js.map"
],
"main": "index.js",
"scripts": {
"clean": "rm -rf ./dist",
"build": "webpack -p && babel src --out-dir dist -s && cp ./types/* README.md LICENSE package.json dist && cd dist && npm install --only=production && cd -",
"pub": "npm run clean && npm run build && npm publish dist"
},
"author": "Google",
"repository": {
"type": "git",
"url": "https://github.com/firebase/firebaseui-web-react.git"
},
"license": "Apache-2.0",
"peerDependencies": {
"react": ">=15 <17",
"firebase": "^6.1.0"
},
"dependencies": {
"firebaseui": "^4.0.0"
},
"devDependencies": {
"@types/react": "^16.3.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-remove-comments": "^2.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-flow": "^2.29.1",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-standard": "^3.1.0",
"react": "^16.3.2",
"style-loader": "^0.21.0",
"webpack": "^4.8.3",
"webpack-cli": "^3.0.0"
}
}