-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
68 lines (68 loc) · 1.88 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
{
"name": "rescript-urql",
"version": "4.0.5",
"scripts": {
"build": "rescript build",
"clean": "rescript clean",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"coverage": "yarn test --coverage",
"preversion": "run-s clean build test",
"start": "rescript build -w",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [
"reason",
"reasonml",
"rescript",
"bucklescript",
"graphql",
"urql",
"react"
],
"author": "Parker Ziegler <[email protected]>",
"contributors": [
"Kara Stubbs <[email protected]>",
"Avery Morin",
"Gustavo Aguiar",
"Phil Plückthun <[email protected]>",
"Jovi De Croock <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@babel/preset-react": "^7.24.1",
"@glennsl/rescript-fetch": "glennsl/rescript-fetch"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@reasonml-community/graphql-ppx": "^1.0.1",
"@rescript/react": "^0.10.1",
"all-contributors-cli": "^6.19.0",
"babel-jest": "^27.3.1",
"jest": "27.3.1",
"graphql": "^15.4.0",
"npm-run-all": "^4.1.5",
"react": "^16.8.0",
"rescript": "^11.1.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": {
"moduleFileExtensions": ["js", "mjs", "res.mjs"],
"testEnvironment": "node",
"testMatch": ["<rootDir>/__tests__/*_test.res.mjs"],
"transform": {},
"transformIgnorePatterns": [
"node_modules/(?!(@glennsl/bs-jest|bs-fetch|wonka|bs-platform)/)"
]
}
}