forked from uber/react-global-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.51 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
{
"name": "react-global-hooks",
"version": "0.2.4",
"description": "Shared state and behavior for react applications.",
"private": true,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint modules/",
"test": "jest"
},
"dependencies": {
"core-js": "^3.6.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.3.4",
"@babel/plugin-syntax-typescript": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-react": "^7.13.13",
"@testing-library/react-hooks": "^5.1.0",
"@types/react": "^17.0.1",
"babel-plugin-version-inline": "^1.0.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "6.13.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-react": "7.14.2",
"faker": "^5.1.0",
"jest": "^26.2.2",
"prettier": "^2.1.1",
"react": "^17.0.1",
"react-test-renderer": "^17.0.1",
"typescript": "^4.4.0-beta"
},
"peerDependencies": {
"react": "^17.0.1"
},
"workspaces": [
"modules/*"
],
"engines": {
"node": ">=10.0.0",
"npm": ">=6.8.0",
"yarn": ">=1.19.1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dmaskasky/react-global-hooks.git"
},
"keywords": [
"react",
"react hooks"
],
"license": "MIT",
"homepage": "https://github.com/dmaskasky/react-global-hooks#readme"
}