forked from CSFrequency/react-firebase-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "react-firebase-auth-hooks",
"version": "3.0.3",
"description": "React Hooks for Firebase Auth",
"author": "Kobra and CS Frequency Limited (https://csfrequency.com)",
"license": "Apache-2.0",
"homepage": "https://github.com/kobra-dev/react-firebase-auth-hooks",
"bugs": "https://github.com/kobra-dev/react-firebase-auth-hooks/issues",
"keywords": [
"react",
"hooks",
"firebase"
],
"files": [
"auth/dist/*.js",
"auth/dist/auth",
"auth/dist/util",
"auth/dist/*.js.flow",
"auth/package.json",
"dist/*.js",
"dist/*.js.map"
],
"repository": {
"type": "git",
"url": "https://github.com/kobra-dev/react-firebase-auth-hooks.git"
},
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rimraf ./dist ./auth/dist ./auth/*.d.ts ./util/*.d.ts",
"dev": "npm run clean && rollup -c -w",
"prepublish": "npm run build",
"prettier": "prettier --check .",
"start": "rollup -c -w"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"dependencies": {},
"devDependencies": {
"@types/react": "^17.0.0",
"firebase": "^8.0.0",
"path": "^0.12.7",
"prettier": "2.2.1",
"react": "^17.0.1",
"rimraf": "^2.6.2",
"rollup": "0.57.1",
"rollup-plugin-commonjs": "9.1.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-typescript2": "0.12.0",
"rollup-plugin-uglify": "3.0.0",
"typescript": "2.8.1"
},
"peerDependencies": {
"react": ">= 16.8.0",
"firebase": ">= 8.0.0"
},
"typings": "index.d.ts"
}