-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "react-use-async",
"version": "0.0.15",
"description": "React hook to manage async related state",
"repository": "http://github.com/wolverineks/react-use-async",
"license": "ISC",
"author": "Kevin Sullivan <[email protected]>",
"main": "./dist/useAsync.js",
"types": "./dist/useAsync.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"fix": "yarn sort-package-json && yarn lint",
"lint": "yarn eslint ./src --fix",
"prepublish": "tsc"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"sort-package-json": "^1.42.2",
"typescript": "^3.9.2"
},
"peerDependencies": {
"react": "^16.13.1"
}
}