-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
102 lines (102 loc) · 3.02 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
{
"name": "react-firehooks",
"version": "1.2.4",
"description": "Lightweight dependency-free collection of React hooks for Firebase",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.js"
},
"./auth": {
"require": "./lib/cjs/auth/index.js",
"default": "./lib/esm/auth/index.js"
},
"./database": {
"require": "./lib/cjs/database/index.js",
"default": "./lib/esm/database/index.js"
},
"./firestore": {
"require": "./lib/cjs/firestore/index.js",
"default": "./lib/esm/firestore/index.js"
},
"./storage": {
"require": "./lib/cjs/storage/index.js",
"default": "./lib/esm/storage/index.js"
}
},
"files": [
"lib",
"auth",
"database",
"firestore",
"storage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andipaetzold/react-firehooks.git"
},
"keywords": [
"react",
"hooks",
"firebase",
"firestore",
"database",
"auth",
"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.0",
"@semantic-release/git": "10.0.0",
"@testing-library/react-hooks": "7.0.2",
"@tsconfig/recommended": "1.0.1",
"@types/jest": "27.0.2",
"@types/react": "17.0.30",
"firebase": "9.1.3",
"husky": "7.0.2",
"jest": "27.2.5",
"lint-staged": "11.2.3",
"prettier": "2.4.1",
"react": "17.0.2",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"semantic-release": "18.0.0",
"ts-jest": "27.0.6",
"typedoc": "0.22.5",
"typescript": "4.4.4"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rimraf lib && npm run build:cjs && npm run build:esm && npm run build:modules",
"build:cjs": "rimraf lib/cjs && tsc --module commonjs --outDir lib/cjs",
"build:esm": "rimraf lib/esm && tsc --module ES2015 --outDir lib/esm",
"build:modules": "node ./scripts/create-modules.js",
"test": "jest",
"semantic-release": "semantic-release",
"typedoc": "typedoc",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"peerDependencies": {
"firebase": "^9.0.0",
"react": ">=16.8.0"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write"
]
}
}