forked from MichalLytek/type-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.62 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
{
"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": "tslint --project tsconfig.json",
"verify": "npm run check && npm run lint",
"package": "gulp package",
"docs": "npm run --prefix website start",
"postinstall": "node ./dist/postinstall || exit 0"
},
"peerDependencies": {
"class-validator": ">=0.12.0",
"graphql": "^15.5.0"
},
"dependencies": {
"@types/glob": "^7.1.3",
"@types/node": "*",
"@types/semver": "^7.3.4",
"glob": "^7.1.6",
"graphql-query-complexity": "^0.7.2",
"graphql-subscriptions": "^1.2.0",
"semver": "^7.3.4",
"tslib": "^2.1.0"
},
"devDependencies": {
"@apollo/federation": "^0.21.2",
"@apollo/gateway": "^0.23.2",
"@graphql-modules/core": "^0.7.13",
"@graphql-modules/di": "^0.7.17",
"@mikro-orm/core": "^4.4.4",
"@mikro-orm/postgresql": "^4.4.4",
"@typegoose/typegoose": "^7.4.8",
"@types/gulp": "^4.0.8",
"@types/gulp-replace": "0.0.31",
"@types/ioredis": "^4.22.0",
"@types/jest": "^26.0.20",
"@types/mongoose": "^5.10.3",
"@types/node": "^14.14.31",
"@types/rimraf": "^3.0.0",
"apollo-cache-control": "^0.11.6",
"apollo-server": "^2.21.0",
"apollo-server-plugin-response-cache": "^0.6.0",
"class-validator": "^0.13.1",
"del": "^6.0.0",
"graphql": "^15.5.0",
"graphql-redis-subscriptions": "^2.3.1",
"graphql-tag": "^2.11.0",
"gulp-replace": "^1.0.0",
"gulp-shell": "^0.8.0",
"gulp-typescript": "^5.0.1",
"gulpclass": "^0.2.0",
"husky": "^4.3.8",
"ioredis": "^4.23.0",
"jest": "^26.6.3",
"joiful": "^3.0.0",
"lint-staged": "^10.5.4",
"mongoose": "5.10.18",
"pg": "^8.5.1",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typedi": "^0.10.0",
"typeorm": "^0.2.31",
"typeorm-typedi-extensions": "^0.4.1",
"typescript": "~4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,tests,examples}/**/*.ts": [
"tslint --fix",
"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": "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": ">= 10.13"
},
"private": true
}