-
-
Notifications
You must be signed in to change notification settings - Fork 677
/
package.json
152 lines (152 loc) · 4.65 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "type-graphql",
"version": "2.0.0",
"private": false,
"description": "Create GraphQL schema and resolvers with TypeScript, using classes and decorators!",
"keywords": [
"typescript",
"graphql",
"schema",
"resolvers",
"api",
"decorators",
"controllers",
"apollo"
],
"homepage": "https://typegraphql.com",
"bugs": {
"url": "https://github.com/MichalLytek/type-graphql/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MichalLytek/type-graphql.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/TypeGraphQL"
},
{
"type": "opencollective",
"url": "https://opencollective.com/typegraphql"
}
],
"license": "MIT",
"author": {
"name": "Michał Lytek",
"url": "https://github.com/MichalLytek"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"./build"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"build:watch": "tsc --build --watch tsconfig.json",
"check": "npm-run-all --npm-path npm check:*",
"check:format": "prettier --check .",
"check:lint": "eslint .",
"check:markdown": "markdownlint \"**/*.md\"",
"check:spell": "cspell lint --config cspell.json --no-progress --show-context \"**\"",
"check:type": "tsc --noEmit && tsc --noEmit --project ./benchmarks/tsconfig.json",
"clean": "shx rm -rf build",
"docs": "npm run --prefix website start",
"fix": "npm-run-all --npm-path npm fix:*",
"fix:format": "prettier --write .",
"fix:lint": "eslint --fix .",
"fix:markdown": "markdownlint --fix \"**/*.md\"",
"postbuild": "shx rm ./build/browser-shim.d.ts && shx cp ./src/browser-shim.ts ./build",
"prebuild": "npm run clean",
"prebuild:watch": "npm run clean",
"prepare": "ts-patch install -s && husky install",
"prepublishOnly": "npm run build",
"test": "jest --verbose --coverage",
"test:ci": "jest --verbose --coverage --ci --forceExit --detectOpenHandles --runInBand",
"test:watch": "jest --watch"
},
"dependencies": {
"@types/glob": "^8.0.1",
"@types/node": "*",
"@types/semver": "^7.3.13",
"glob": "^8.1.0",
"graphql-query-complexity": "^0.12.0",
"graphql-subscriptions": "^2.0.0",
"semver": "^7.3.8",
"tslib": "^2.5.0"
},
"devDependencies": {
"@apollo/gateway": "^2.3.0",
"@apollo/subgraph": "^2.3.0",
"@babel/plugin-syntax-decorators": "^7.19.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@cspell/dict-node": "^4.0.2",
"@cspell/dict-npm": "^5.0.3",
"@cspell/dict-shell": "^1.0.1",
"@cspell/dict-typescript": "^3.1.0",
"@cspell/eslint-plugin": "^6.22.0",
"@graphql-tools/schema": "^9.0.15",
"@graphql-tools/utils": "^9.2.0",
"@mikro-orm/core": "^5.6.8",
"@mikro-orm/postgresql": "^5.6.8",
"@typegoose/typegoose": "^10.1.0",
"@types/jest": "^29.4.0",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^18.11.18",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"apollo-server": "^3.11.1",
"apollo-server-plugin-response-cache": "^3.8.1",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"class-validator": "^0.14.0",
"cspell": "^6.22.0",
"del": "^7.0.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"graphql": "^16.6.0",
"graphql-redis-subscriptions": "^2.6.0",
"graphql-tag": "^2.12.6",
"husky": "^8.0.3",
"ioredis": "^5.3.0",
"jest": "^29.4.1",
"joiful": "^3.0.2",
"lint-staged": "^13.1.0",
"lodash.merge": "^4.6.2",
"markdownlint": "^0.27.0",
"markdownlint-cli": "^0.33.0",
"mongoose": "~6.9.0",
"npm-run-all": "^4.1.5",
"pg": "^8.9.0",
"prettier": "^2.8.3",
"prettier-plugin-sh": "^0.12.8",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.1.2",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-patch": "^2.1.0",
"tsconfig-paths": "^4.1.2",
"typedi": "^0.10.0",
"typeorm": "^0.3.11",
"typeorm-typedi-extensions": "^0.4.1",
"typescript": "^4.9.3",
"typescript-transform-paths": "^3.4.6"
},
"peerDependencies": {
"class-validator": ">=0.14.0",
"graphql": "^16.6.0"
},
"engines": {
"node": ">= 14.5.0"
}
}