-
Notifications
You must be signed in to change notification settings - Fork 407
/
package.json
114 lines (114 loc) · 3.56 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"version": "4.2.3",
"license": "MIT",
"type": "module",
"main": "dist/index.umd.cjs",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "firebase emulators:exec --project=rxfire-525a3 \"vitest --ui\"",
"build": "tsc && vite build && npm run docs",
"test": "firebase emulators:exec --project=rxfire-525a3 \"vitest\"",
"test:firestore": "firebase emulators:exec --only firestore --ui --project=rxfire-525a3 \"vitest firestore\"",
"test:database": "firebase emulators:exec --only database --project=rxfire-525a3 \"vitest database\"",
"test:auth": "firebase emulators:exec --only auth --project=rxfire-525a3 \"vitest auth\"",
"test:functions": "firebase emulators:exec --only functions --project=rxfire-525a3 \"vitest functions\"",
"test:storage": "firebase emulators:exec --only storage --project=rxfire-525a3 \"vitest storage\"",
"test:useObservable": "vitest useObservable",
"test:firebaseApp": "vitest firebaseApp",
"format": "prettier src test vite.config.ts -w",
"lint": "eslint src/* test/* vite.config.ts",
"size": "size-limit",
"analyze": "size-limit --why",
"docs": "typedoc --options typedoc.json && markdown-toc -i docs/use.md",
"docs:fork": "typedoc --options typedoc.json --gitRemote upstream && markdown-toc -i docs/use.md"
},
"peerDependencies": {
"firebase": "^9.0.0 || next",
"react": ">=16 || experimental"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"prettier": {
"singleQuote": true,
"printWidth": 160
},
"name": "reactfire",
"author": "jhuleatt",
"description": "Firebase library for React",
"repository": {
"type": "git",
"url": "git+https://github.com/FirebaseExtended/reactfire.git"
},
"bugs": {
"url": "https://github.com/Firebase/reactfire/issues"
},
"homepage": "https://firebaseopensource.com/projects/firebaseextended/reactfire/",
"module": "./dist/index.js",
"size-limit": [
{
"path": "dist/reactfire.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/reactfire.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.1",
"@size-limit/preset-small-lib": "^8.2.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/use-sync-external-store": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/ui": "^0.32.2",
"cross-fetch": "^3.1.6",
"eslint": "^8.43.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"firebase": "^9.23.0",
"firebase-tools": "^12.4.0",
"globalthis": "^1.0.3",
"husky": "^8.0.3",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^22.1.0",
"markdown-toc": "^1.2.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup-plugin-visualizer": "^5.9.2",
"size-limit": "^8.2.6",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vitest": "^0.32.2"
},
"dependencies": {
"rxfire": "^6.0.3",
"rxjs": "^6.6.3 || ^7.0.1",
"use-sync-external-store": "^1.2.0"
}
}