forked from teamwalnut/rescript-urql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.82 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.82 KB
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
{
"name": "@urql/rescript",
"version": "4.0.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",
"rescript",
"bucklescript",
"graphql",
"urql",
"react"
],
"author": "Parker Ziegler <parker.ziegler@formidable.com>",
"contributors": [
"Kara Stubbs <kara.stubbs@formidable.com>",
"Avery Morin",
"Gustavo Aguiar",
"Phil Plückthun <phil@kitten.sh>",
"Jovi De Croock <jovi.decroock@formidable.com>"
],
"license": "MIT",
"dependencies": {
"bs-fetch": "^0.6.2"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@glennsl/bs-jest": "^0.6.0",
"@reasonml-community/graphql-ppx": "^1.0.1",
"@rescript/react": "^0.10.1",
"all-contributors-cli": "^6.19.0",
"babel-jest": "^26.6.3",
"bs-platform": "^9.0.2",
"gentype": "^3.44.0",
"graphql": "^15.4.0",
"npm-run-all": "^4.1.5",
"react": "^16.8.0",
"urql": "^2.0.0"
},
"peerDependencies": {
"@reasonml-community/graphql-ppx": "^1.0.1",
"@rescript/react": "^0.10.1",
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0",
"react": "^16.8.0",
"urql": "^2.0.0"
},
"resolutions": {
"wonka": "5.0.0-rc.1"
},
"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)/)"
]
}
}