-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "graphql-client-sandbox",
"version": "1.0.0",
"main": "index.js",
"repository": "ssh://[email protected]/one-chan/graphql-client-sandbox.git",
"author": "Daichi Kimura <[email protected]>",
"license": "MIT",
"dependencies": {
"apollo-client": "2.6.4",
"graphql": "14.5.8",
"react": "16.10.2",
"react-apollo": "3.1.3",
"react-apollo-hooks": "0.5.0",
"react-dom": "16.10.2"
},
"devDependencies": {
"@graphql-codegen/cli": "1.8.1",
"@graphql-codegen/fragment-matcher": "1.8.1",
"@graphql-codegen/introspection": "1.8.1",
"@graphql-codegen/typescript": "1.8.1",
"@graphql-codegen/typescript-operations": "1.8.1",
"@graphql-codegen/typescript-react-apollo": "1.8.1",
"@types/graphql": "14.2.3",
"@types/node": "12.11.1",
"@types/react": "16.9.7",
"@types/react-dom": "16.9.2",
"@types/yaml": "1.2.0",
"dotenv": "8.2.0",
"ts-node": "8.4.1",
"typescript": "3.6.4",
"yaml": "1.7.2"
},
"scripts": {
"codegen": "graphql-codegen --require dotenv/config"
}
}