-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.62 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
{
"name": "@alpaca-travel/graph-sdk-react-urql",
"version": "2.1.5",
"author": "Tom Manderson <[email protected]>",
"homepage": "https://alpacatravel.github.io/graph-sdk/packages/react-urql/",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/AlpacaTravel/graph-sdk.git"
},
"scripts": {
"test": "jest",
"build:typedoc": "rm -rf docs && node doc-generator.js && typedoc src/index.ts --readme api.md --out docs",
"docs": "npm run build:typedoc",
"build": "npm run tsc",
"prepublishOnly": "npm run tsc",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"graphql-codegen": "graphql-codegen --config codegen.yml",
"clean": "rm -rf dist && rm -rf docs"
},
"peerDependencies": {
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
"graphql-tag": "^2.0.0",
"urql": "^2.0.4"
},
"env": {
"jest": true
},
"files": [
"dist"
],
"devDependencies": {
"@graphql-codegen/cli": "^2.0.1",
"@graphql-codegen/fragment-matcher": "^3.0.0",
"@graphql-codegen/introspection": "^2.0.0",
"@graphql-codegen/jsdoc": "^2.0.0",
"@graphql-codegen/typescript": "^2.0.0",
"@graphql-codegen/typescript-operations": "^2.0.1",
"@graphql-codegen/typescript-urql": "^3.0.0",
"@types/jest": "^29.4.0",
"graphql": "^15.5.1",
"jest": "^29.4.1",
"react": "^17.0.2",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.0",
"typescript": "^4.8.0",
"urql": "^2.0.4"
}
}