-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "chimp-graphql-codegen-plugin",
"version": "0.0.0-development",
"description": "GraphQL Code Generator plugin for Chimp",
"repository": {
"type": "git",
"url": "https://github.com/xolvio/chimp-graphql-codegen-plugin.git"
},
"release": {
"branches": ["master"]
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"scripts": {
"lint": "eslint **/*.ts",
"test": "jest",
"prepack": "tsc",
"semantic-release": "semantic-release"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^2.7.1",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/visitor-plugin-common": "^2.12.1",
"@graphql-tools/utils": "^8.12.0",
"auto-bind": "~4.0.0",
"lodash": "~4.17.20",
"tslib": "~2.0.0"
},
"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"
},
"devDependencies": {
"@graphql-codegen/testing": "^1.17.7",
"@types/jest": "^29.1.2",
"@types/lodash": "4.14.159",
"graphql": "^16.6.0",
"jest": "^29.1.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"main": "dist/index.js"
}