-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.34 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": "custom-hooks",
"version": "1.0.0",
"description": "collection of cool custom hooks",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashish-r/custom-hooks.git"
},
"keywords": [
"react",
"react",
"hooks",
"hooks"
],
"author": "Ashish Ranjan",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashish-r/custom-hooks/issues"
},
"homepage": "https://github.com/ashish-r/custom-hooks#readme",
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@testing-library/react-hooks": "^3.4.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"eslint": "^7.9.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-react": "^7.21.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"react-test-renderer": "^16.13.1"
},
"dependencies": {
"react": "^16.13.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint",
"pretty-quick — staged",
"git add"
]
}
}