forked from CSFrequency/react-firebase-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.25 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
72
73
74
75
76
77
78
79
80
{
"name": "react-firebase-hooks",
"version": "5.0.3",
"description": "React Hooks for Firebase",
"author": "CS Frequency Limited (https://csfrequency.com)",
"license": "Apache-2.0",
"homepage": "https://github.com/csfrequency/react-firebase-hooks",
"bugs": "https://github.com/csfrequency/react-firebase-hooks/issues",
"keywords": [
"react",
"hooks",
"firebase"
],
"files": [
"auth/dist/*.js",
"auth/dist/auth",
"auth/dist/util",
"auth/package.json",
"database/dist/*.js",
"database/dist/database",
"database/dist/util",
"database/package.json",
"dist/*.js",
"dist/*.js.map",
"firestore/dist/*.js",
"firestore/dist/firestore",
"firestore/dist/util",
"firestore/package.json",
"functions/dist/*.js",
"functions/dist/functions",
"functions/dist/util",
"functions/package.json",
"messaging/dist/*.js",
"messaging/dist/messaging",
"messaging/dist/util",
"messaging/package.json",
"storage/dist/*.js",
"storage/dist/storage",
"storage/dist/util",
"storage/package.json",
"util/dist/*.js",
"util/dist/util",
"util/package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/csfrequency/react-firebase-hooks.git"
},
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rimraf ./dist ./auth/dist ./auth/*.d.ts ./database/dist ./database/*.d.ts ./firestore/dist ./firestore/*.d.ts ./storage/dist ./storage/*.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",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.2",
"@types/react": "^17.0.0",
"firebase": "^9.6.5",
"path": "^0.12.7",
"prettier": "2.2.1",
"react": "^17.0.1",
"rimraf": "^2.6.2",
"rollup": "^2.63.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": ">= 16.8.0",
"firebase": ">= 9.0.0"
},
"typings": "index.d.ts"
}