forked from MichalLytek/type-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 3.56 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
{
"name": "type-graphql",
"version": "0.17.4",
"author": {
"name": "Michał Lytek",
"url": "https://github.com/19majkel94"
},
"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": {
"@types/graphql": "^14.0.7",
"graphql": "^14.1.1"
},
"dependencies": {
"@types/glob": "^7.1.1",
"@types/node": "*",
"@types/semver": "^6.0.0",
"class-validator": ">=0.9.1",
"glob": "^7.1.3",
"graphql-query-complexity": "^0.2.3",
"graphql-subscriptions": "^1.1.0",
"semver": "^6.0.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/express-graphql": "^0.6.2",
"@types/graphql": "^14.0.7",
"@types/gulp": "^4.0.6",
"@types/gulp-replace": "0.0.31",
"@types/gulp-shell": "0.0.31",
"@types/ioredis": "^4.0.10",
"@types/jest": "^24.0.11",
"@types/mongoose": "^5.3.26",
"@types/node": "^11.13.7",
"@types/rimraf": "^2.0.2",
"@types/ws": "^6.0.1",
"apollo-cache-control": "^0.5.2",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-engine": "^1.1.2",
"apollo-link": "^1.2.11",
"apollo-link-ws": "^1.0.17",
"apollo-server": "^2.4.8",
"apollo-server-express": "^2.4.8",
"class-transformer": "^0.2.0",
"del": "^4.1.0",
"express": "^4.16.4",
"express-graphql": "^0.8.0",
"graphql": "^14.1.1",
"graphql-playground-middleware-express": "^1.7.12",
"graphql-redis-subscriptions": "^2.1.0",
"graphql-tag": "^2.10.1",
"gulp-replace": "^1.0.0",
"gulp-shell": "^0.7.0",
"gulp-typescript": "^5.0.1",
"gulpclass": "^0.2.0",
"husky": "^2.0.0",
"ioredis": "^4.9.0",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"mongoose": "^5.5.3",
"mysql": "^2.17.1",
"prettier": "^1.17.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.3",
"subscriptions-transport-ws": "^0.9.16",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typedi": "^0.8.0",
"typegoose": "^5.6.0",
"typeorm": "^0.2.16",
"typeorm-typedi-extensions": "^0.2.3",
"typescript": "^3.4.5",
"ws": "^6.2.1"
},
"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",
"repository": {
"type": "git",
"url": "https://github.com/19majkel94/type-graphql.git"
},
"bugs": {
"url": "https://github.com/19majkel94/type-graphql/issues"
},
"keywords": [
"typescript",
"graphql",
"schema",
"resolvers",
"api",
"decorators",
"controllers",
"apollo"
],
"engines": {
"node": ">= 8.x"
},
"private": true
}