-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.42 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
{
"name": "react-hooks",
"version": "1.0.1",
"description": "React Hooks",
"workspaces": [
"packages/*"
],
"private": true,
"main": "index.js",
"repository": "[email protected]:EdgarPost/react-hooks.git",
"author": "Edgar Post <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"lerna": "lerna",
"build": "rollup -c",
"lint": "eslint --fix ./",
"prepublish": "yarn lint && yarn test && yarn build"
},
"husky": {
"hooks": {
"post-merge": "yarn",
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{js}": [
"yarn lint",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@testing-library/react-hooks": "^1.1.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lerna": "^3.15.0",
"lint-staged": "^9.1.0",
"prettier": "1.18.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rollup": "^1.16.6"
}
}