-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.76 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.76 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
{
"name": "@drawbotics/urql-computed-exchange",
"version": "1.2.0",
"description": "URQL exchange to allow computed properties in GraphQL queries.",
"keywords": [],
"license": "UNLICENSED",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Drawbotics/urql-computed-exchange"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"clean": "rimraf lib/",
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"test:integration:watch": "jest --config ./jest.integration.config.js --watch",
"prepublishOnly": "npm run clean && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --max-warnings=0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0",
"urql": "^1.8.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0",
"wonka": "^4.0.0 || ^5.0.0 || ^6.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.15",
"@types/react": "^16.9.18",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^10.0.3",
"eslint-plugin-jest": "^29.15.0",
"graphql": "^16.13.1",
"graphql-tag": "^2.10.1",
"husky": "^4.0.10",
"import-sort-style-module": "^6.0.0",
"jest": "^29.7.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"prettier-plugin-import-sort": "0.0.3",
"react": "^16.12.0",
"rimraf": "^3.0.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"urql": "^5.0.1",
"wonka": "^6.3.5"
},
"dependencies": {
"fclone": "^1.0.11",
"graphql-anywhere": "^4.2.6"
}
}