-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.68 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
{
"name": "firebase-hooks-react",
"version": "0.2.0",
"private": true,
"description": "React hooks for firebase",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/aleksanderbrymora/firebase-hooks-react",
"author": {
"name": "Aleks",
"email": "brymora.aleksander@gmail.com",
"url": "https://www.ohaleks.dev"
},
"license": "MIT",
"files": [
"dist/**/*.*"
],
"keywords": [
"react",
"hooks",
"firebase",
"auth",
"firestore",
"storage",
"database"
],
"scripts": {
"prepublish": "yarn build",
"start": "tsc --watch",
"build": "yarn clean && tsc",
"lint": "eslint --ext .tsx,.ts --fix src/",
"clean": "rm -rf ./dist",
"docs": "typedoc --out docs/typedoc src",
"read-docs": "live-server docs/typedoc"
},
"dependencies": {
"firebase": "^7.17.2"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/faker": "^4.1.12",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"faker": "^4.1.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typedoc": "^0.18.0",
"typescript": "^4.0.2"
}
}