forked from adamlaska/ts-graphql-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.06 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "ts-graphql-plugin",
"version": "2.1.6",
"description": "TypeScript Language Service Plugin for GraphQL",
"keywords": [
"typescript",
"graphql",
"language service"
],
"main": "lib/index.js",
"bin": {
"tsgql": "lib/cli/cli.js",
"ts-graphql-plugin": "lib/cli/cli.js"
},
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib \"e2e/*.log\" \"*.tsbuildinfo\"",
"compile": "tsc -p .",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"jest": "jest",
"jest:ci": "jest --coverage --maxWorkers=4",
"e2e": "node e2e/run.js",
"e2e:ci": "c8 -o e2e_coverage -x e2e -r json -i \"src/**/*\" node e2e/run.js",
"test": "yarn format:check && yarn lint && yarn jest:ci && yarn e2e:ci",
"prettier": "prettier \"*.js\" \"*.md\" \"*.json\" \"*.yml\" \"src/**/*\" \"e2e/**/*\" \"docs/**/*\"",
"format": "yarn prettier --write",
"format:check": "yarn prettier --check",
"doc:toc": "ts-node -P tools/tsconfig.json tools/add-toc.ts",
"watch:compile": "tsc --watch -p .",
"watch:jest": "jest --watch",
"watch": "yarn run clean && run-p watch:*",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"author": "Quramy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Quramy/ts-graphql-plugin.git"
},
"dependencies": {
"graphql-language-service-interface": "^2.4.1",
"graphql-language-service-types": "^1.6.1"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/jest": "27.4.1",
"@types/node": "16.11.26",
"@types/node-fetch": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"c8": "7.11.0",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"express": "4.17.3",
"express-graphql": "0.12.0",
"fretted-strings": "1.0.1",
"glob": "7.2.0",
"graphql": "15.8.0",
"graphql-config": "4.2.0",
"husky": "7.0.4",
"jest": "27.5.1",
"markdown-toc": "1.2.0",
"node-fetch": "3.2.3",
"npm-run-all": "4.1.5",
"pinst": "3.0.0",
"prettier": "2.6.1",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"talt": "2.2.3",
"ts-jest": "27.1.4",
"ts-loader": "9.2.8",
"ts-node": "10.7.0",
"typescript": "4.6.3",
"typescript-eslint-language-service": "5.0.0",
"vscode-languageserver-types": "3.16.0",
"webpack": "5.71.0",
"webpack-cli": "4.9.2"
},
"resolutions": {
"@types/express-serve-static-core": "^4.17.9"
},
"peerDependencies": {
"graphql": "^15.0.0",
"typescript": "^2.3.0 || ^3.0.0 || ^4.0.0"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(src/.*\\.test)\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"lib/.*"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!**/testing/**"
],
"moduleFileExtensions": [
"js",
"ts",
"json"
]
}
}