-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 KB
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
{
"name": "react-use-observable",
"version": "1.0.4",
"description": "Use rxjs observables with react hooks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Carlos André Ferrari",
"homepage": "https://github.com/caferrari/react-use-observable",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/caferrari/react-use-observable.git"
},
"bugs": {
"url": "https://github.com/caferrari/react-use-observable/issues"
},
"scripts": {
"build": "tsc",
"prepare": "tsc"
},
"peerDependencies": {
"react": "^16",
"react-dom": "^16",
"rxjs": "^6"
},
"devDependencies": {
"@types/react": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rxjs": "^6",
"typescript": "^4.3.4"
},
"keywords": [
"react",
"rxjs",
"hooks",
"react-hooks",
"observable"
]
}