-
Notifications
You must be signed in to change notification settings - Fork 306
/
package.json
93 lines (93 loc) · 2.7 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "react-firebase-hooks",
"version": "5.1.1",
"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",
"test:ci": "firebase emulators:exec 'npx jest --forceExit'"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/node": "^7.20.0",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.2",
"@testing-library/react": "^12",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.2.1",
"@types/react": "^17.0.0",
"babel-jest": "^29.2.2",
"firebase": "^9.13.0",
"firebase-tools": "^11.16.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"path": "^0.12.7",
"prettier": "2.2.1",
"react": "^17",
"react-test-renderer": "^17",
"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",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"peerDependencies": {
"firebase": ">= 9.0.0",
"react": ">= 16.8.0"
},
"typings": "index.d.ts"
}