forked from MichalLytek/type-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.69 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
{
"name": "type-graphql",
"version": "0.0.0-unreleased",
"author": {
"name": "Michał Lytek",
"url": "https://github.com/MichalLytek"
},
"scripts": {
"test": "jest --verbose --coverage",
"test:ci": "jest --verbose --coverage --ci --forceExit --detectOpenHandles --runInBand",
"test:watch": "jest --watch",
"format": "prettier --write \"{src,tests,examples}/**/*.{ts,js}\" \"docs/**/*.md\"",
"check:format": "prettier --check \"{src,tests,examples}/**/*.{ts,js}\" \"docs/**/*.md\"",
"check:type": "tsc --noEmit && tsc --noEmit -p ./examples/tsconfig.json",
"check": "npm run check:format && npm run check:type",
"lint": "echo TODO: add ESLint",
"verify": "npm run check && npm run lint",
"package": "echo TODO: bash script",
"docs": "npm run --prefix website start",
"generate:sponsorkit": "npx sponsorkit --width=320 --dir=./img --name=github-sponsors",
"postgenerate:sponsorkit": "npx shx cp ./img/github-sponsors.svg ./website/static/img/github-sponsors.svg"
},
"peerDependencies": {
"class-validator": ">=0.14.0",
"graphql": "^16.6.0"
},
"dependencies": {
"@types/node": "*",
"@types/semver": "^7.3.13",
"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",
"@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",
"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",
"del": "^7.0.0",
"graphql": "^16.6.0",
"graphql-redis-subscriptions": "^2.6.0",
"graphql-tag": "^2.12.6",
"husky": "^4.3.8",
"ioredis": "^5.3.0",
"jest": "^29.4.1",
"joiful": "^3.0.2",
"lint-staged": "^13.1.0",
"lodash.merge": "^4.6.2",
"mongoose": "~6.9.0",
"pg": "^8.9.0",
"prettier": "^2.8.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.1.2",
"sponsorkit": "^0.8.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedi": "^0.10.0",
"typeorm": "^0.3.11",
"typeorm-typedi-extensions": "^0.4.1",
"typescript": "~4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,tests,examples}/**/*.ts": [
"echo \"TODO: add eslint\"",
"prettier --write"
],
"{src,tests,examples}/**/*.js": [
"prettier --write"
],
"docs/**/*.md": [
"prettier --write"
]
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"readmeFilename": "README.md",
"description": "Create GraphQL schema and resolvers with TypeScript, using classes and decorators!",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/TypeGraphQL"
},
{
"type": "opencollective",
"url": "https://opencollective.com/typegraphql"
}
],
"repository": {
"type": "git",
"url": "https://github.com/MichalLytek/type-graphql.git"
},
"bugs": {
"url": "https://github.com/MichalLytek/type-graphql/issues"
},
"keywords": [
"typescript",
"graphql",
"schema",
"resolvers",
"api",
"decorators",
"controllers",
"apollo"
],
"engines": {
"node": ">= 14.5.0"
},
"private": true
}