This repository has been archived by the owner on Apr 28, 2023. It is now read-only.
forked from MichalLytek/type-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.37 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.18.0-unreleased",
"author": {
"name": "Michał Lytek",
"url": "https://github.com/MichalLytek"
},
"scripts": {
"dev": "node ./dev.js",
"test": "jest --verbose --coverage",
"test:ci": "jest --verbose --coverage --ci --forceExit --detectOpenHandles --runInBand",
"test:watch": "jest --watch",
"check": "tsc --noEmit",
"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": {
"graphql": "^14.6.0"
},
"dependencies": {
"@types/glob": "^7.1.1",
"@types/node": "*",
"@types/semver": "^7.1.0",
"class-validator": ">=0.9.1",
"glob": "^7.1.6",
"graphql-query-complexity": "^0.4.1",
"graphql-subscriptions": "^1.1.0",
"semver": "^7.1.3",
"tslib": "^1.11.1"
},
"devDependencies": {
"@apollo/federation": "^0.13.2",
"@apollo/gateway": "^0.13.2",
"@typegoose/typegoose": "^6.4.0",
"@types/express": "^4.17.3",
"@types/gulp": "^4.0.6",
"@types/gulp-replace": "0.0.31",
"@types/ioredis": "^4.14.9",
"@types/jest": "^25.1.4",
"@types/mongoose": "^5.7.6",
"@types/node": "^13.9.1",
"@types/rimraf": "^2.0.3",
"apollo-cache-control": "^0.9.0",
"apollo-engine": "^1.1.2",
"apollo-server": "^2.11.0",
"apollo-server-express": "^2.11.0",
"class-transformer": "^0.2.3",
"del": "^5.1.0",
"express": "^4.17.1",
"graphql": "^14.6.0",
"graphql-playground-middleware-express": "^1.7.12",
"graphql-redis-subscriptions": "^2.2.1",
"graphql-tag": "^2.10.3",
"gulp-replace": "^1.0.0",
"gulp-shell": "^0.8.0",
"gulp-typescript": "^5.0.1",
"gulpclass": "^0.2.0",
"husky": "^4.2.3",
"ioredis": "^4.16.0",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"mongoose": "^5.9.4",
"mysql": "^2.18.1",
"prettier": "^1.19.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typedi": "^0.8.0",
"typeorm": "^0.2.24",
"typeorm-typedi-extensions": "^0.2.3",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,tests,examples}/**/*.ts": [
"tslint --fix",
"prettier --write",
"git add"
],
"{src,tests,examples}/**/*.js": [
"prettier --write",
"git add"
],
"docs/**/*.md": [
"prettier --write",
"git add"
]
},
"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.3"
},
"private": true
}