-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "graphql-codegen-hook",
"version": "1.1.0",
"description": "Graphql code generator pre-commit hook",
"main": "./bin/graphql-codegen-hook.js",
"scripts": {
"test": "npm link && cd tests && graphql-codegen-hook -c codegen.yml src/query.ts --verbose"
},
"bin": {
"graphql-codegen-hook": "./bin/graphql-codegen-hook.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackton1/graphql-codegen-hook.git"
},
"author": "Tonye Jack",
"license": "ISC",
"bugs": {
"url": "https://github.com/jackton1/graphql-codegen-hook/issues"
},
"homepage": "https://github.com/jackton1/graphql-codegen-hook#readme",
"devDependencies": {
"@graphql-codegen/add": "1.17.7",
"@graphql-codegen/cli": "2.16.5",
"@graphql-codegen/typescript": "1.23.0",
"@graphql-codegen/typescript-operations": "1.18.4",
"@graphql-codegen/typescript-react-apollo": "3.3.7",
"lodash": "4.17.21",
"graphql": "14.7.0",
"graphql-tag": "2.12.6",
"@types/react": "18.0.33",
"typescript": "5.0.4",
"react": "18.2.0",
"@apollo/react-hoc": "4.0.0",
"@apollo/react-components": "4.0.0",
"@apollo/react-hooks": "4.0.0",
"@apollo/react-common": "3.1.4",
"apollo-client": "2.6.10",
"apollo-cache": "1.3.5",
"react-dom": "18.2.0",
"mem": "9.0.2"
},
"dependencies": {
"path": "^0.12.7",
"process": "^0.11.10",
"shelljs": "^0.8.5",
"yargs": "^17.7.1",
"minimatch": "^7.4.2"
}
}