-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.66 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
{
"name": "redux-firestore-hooks",
"version": "0.4.1",
"description": "Very simple React Hooks for Firestore to Redux",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "jest",
"code-fix": "run-s eslint-fix prettier",
"eslint": "eslint --ext ts --cache src",
"eslint-fix": "eslint --ext ts --cache --fix src",
"prettier": "prettier src --write"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/macinjoke/redux-firestore-hooks.git"
},
"keywords": [
"redux",
"firestore",
"firebase",
"react-hooks",
"hooks",
"react"
],
"author": "macinjoke",
"license": "MIT",
"bugs": {
"url": "https://github.com/macinjoke/redux-firestore-hooks/issues"
},
"homepage": "https://github.com/macinjoke/redux-firestore-hooks#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react-hooks": "^4.3.0",
"firebase": "^9.5.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.0",
"react": "^17.0.2",
"redux": "^4.1.2",
"rollup": "^2.60.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.3"
},
"peerDependencies": {
"react": ">= 16.8.0"
}
}