-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
103 lines (103 loc) · 3.03 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
{
"name": "react-firehooks",
"version": "4.2.0",
"description": "Lightweight dependency-free collection of React hooks for Firebase",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"sideEffects": false,
"type": "module",
"exports": {
".": "./lib/index.js",
"./app-check": "./lib/app-check/index.js",
"./auth": "./lib/auth/index.js",
"./database": "./lib/database/index.js",
"./firestore": "./lib/firestore/index.js",
"./messaging": "./lib/messaging/index.js",
"./storage": "./lib/storage/index.js"
},
"files": [
"lib",
"auth",
"app-check",
"database",
"firestore",
"messaging",
"storage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andipaetzold/react-firehooks.git"
},
"keywords": [
"react",
"hooks",
"firebase",
"app-check",
"auth",
"database",
"firestore",
"messaging",
"storage"
],
"author": {
"name": "Andi Pätzold",
"email": "[email protected]",
"url": "https://github.com/andipaetzold"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andipaetzold/react-firehooks/issues"
},
"homepage": "https://github.com/andipaetzold/react-firehooks#readme",
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@testing-library/react": "16.0.1",
"@tsconfig/recommended": "1.0.7",
"@tsconfig/strictest": "2.0.5",
"@types/react": "18.3.11",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "2.1.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsdoc": "50.3.1",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-react-hooks": "4.6.2",
"firebase": "10.5.0",
"happy-dom": "15.10.2",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"react": "18.3.1",
"react-test-renderer": "18.3.1",
"rimraf": "6.0.1",
"semantic-release": "24.1.2",
"typedoc": "0.26.8",
"typescript": "5.6.3",
"vitest": "2.1.2"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run build:esm && npm run build:modules",
"build:esm": "rimraf lib && tsc",
"build:modules": "node ./scripts/create-modules.js",
"test": "vitest",
"typecheck": "vitest --typecheck",
"semantic-release": "semantic-release",
"typedoc": "typedoc",
"prepare": "husky",
"lint": "eslint src",
"lint-staged": "lint-staged"
},
"peerDependencies": {
"firebase": "^10.5.0 || ^11.0.0",
"react": ">=16.8.0"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint"
]
}
}