-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.74 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.74 KB
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
{
"name": "graphql2typescript",
"version": "1.0.0",
"description": "Graphql2typescript is a library that convert graphql schema to typescript types and save them into file.",
"main": "app.ts",
"scripts": {
"build": "tsc --build tsconfig.json",
"start": "node ./lib/app.js",
"dev": "tsc --build tsconfig.json --watch & nodemon ./lib/app.js",
"test": "jest",
"lint": "eslint --max-warnings=0 . --ext .ts,.tsx",
"lint-fix": "eslint --max-warnings=0 . --ext .ts,.tsx,.js,.jsx --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GraphBase-Core/graphql2typescript.git"
},
"author": "Jędrzej Dąbrowski",
"keywords": [
"graphql",
"schema",
"typescript",
"generate"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/GraphBase-Core/graphql2typescript/issues"
},
"homepage": "https://github.com/GraphBase-Core/graphql2typescript#readme",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.5.4",
"@types/node": "^17.0.19",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.3.1",
"node": "^17.4.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"dependencies": {
"dotenv-cli": "5.0.0",
"graphql-js-tree": "0.1.6",
"transform-graphql": "0.0.4",
"typescript": "4.5.5",
"yargs": "17.6.0"
}
}