This repository has been archived by the owner on Mar 14, 2022. It is now read-only.
forked from teamwalnut/rescript-urql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.66 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "reason-urql",
"version": "1.7.0",
"scripts": {
"build": "bsb -make-world",
"clean": "bsb -clean-world",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"coverage": "yarn test --coverage",
"preversion": "run-s clean build test",
"start": "bsb -make-world -w",
"test": "jest"
},
"keywords": [
"reason",
"reasonml",
"bucklescript",
"graphql",
"urql"
],
"author": "Parker Ziegler <[email protected]>",
"contributors": [
"Kara Stubbs <[email protected]>",
"Avery Morin",
"Gustavo Aguiar"
],
"license": "MIT",
"dependencies": {
"graphql": "^14.1.1",
"urql": "1.5.1",
"wonka": "^3.2.2"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@glennsl/bs-jest": "^0.5.1",
"all-contributors-cli": "^5.4.0",
"babel-jest": "^25.2.6",
"bs-fetch": "^0.5.2",
"bs-platform": "7.2.2",
"gentype": "^3.18.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"npm-run-all": "^4.1.5",
"reason-react": "0.7.0"
},
"peerDependencies": {
"bs-fetch": "^0.5.2",
"reason-react": "0.7.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/__tests__/*_test.bs.js"
],
"transform": {
"\\.jsx?$": "<rootDir>/scripts/jest-transform-esm.js"
},
"transformIgnorePatterns": [
"node_modules/(?!(@glennsl/bs-jest|bs-fetch|wonka|bs-platform)/)"
]
},
"lint-staged": {
"*.{re,rei}": [
"bsrefmt --in-place",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}