forked from reasonml-community/reason-apollo-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "reason-apollo-hooks",
"version": "6.0.0",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "echo \"Error: no test specified\" && exit 1",
"build:docs": "yarn build && bsdoc build --debug --verbose ReasonApolloHooks"
},
"keywords": [
"BuckleScript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@apollo/react-hooks": "^3.0.0",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"bs-platform": "^7.0.1",
"bsdoc": "6.0.1-alpha",
"husky": "^3.0.5",
"lint-staged": "^9.4.0",
"reason-apollo": "^0.18.0",
"reason-react": ">=0.7.0"
},
"peerDependencies": {
"@apollo/react-hooks": "^3.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"reason-apollo": "^0.18.0",
"reason-react": ">=0.7.0"
},
"lint-staged": {
"*.{re,rei}": [
"bsrefmt --in-place -w 80",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}