-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) ยท 1.29 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
53
54
55
56
{
"name": "graphql-from-swagger",
"version": "0.7.0",
"repository": {
"type": "git",
"url": "[email protected]:738/graphql-from-swagger.git"
},
"author": "Junwoo Ji <[email protected]>",
"main": "lib/index.js",
"bin": {
"graphql-from-swagger": "bin/graphql-from-swagger.js"
},
"preferGlobal": true,
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.0",
"@types/node-fetch": "^2.5.4",
"@types/yamljs": "^0.2.30",
"babel-jest": "^25.1.0",
"jest": "^25.1.0",
"typescript": "^3.7.5"
},
"dependencies": {
"@graphql-codegen/core": "^1.12.2",
"@graphql-codegen/typescript": "^1.12.2",
"commander": "^4.1.1",
"graphql": "^14.6.0",
"node-fetch": "^2.6.0",
"swagger-to-graphql": "^4.0.2",
"yamljs": "^0.3.0"
},
"scripts": {
"dev": "ts-node src/index.ts",
"start": "node ./bin/graphql-from-swagger.js",
"build": "tsc",
"test": "jest"
},
"keywords": [
"graphql",
"swagger",
"codegen",
"graphql-codegen",
"generator",
"apollo",
"apollographql",
"rest",
"apollo-datasource",
"apollo-datasource-rest",
"cli",
"terminal"
]
}