forked from MichalLytek/type-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.28 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.28 KB
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
{
"name": "type-graphql",
"version": "0.16.0",
"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"
},
"peerDependencies": {
"@types/graphql": "^14.0.7",
"graphql": "^14.1.1"
},
"dependencies": {
"@types/glob": "^7.1.1",
"@types/node": "*",
"@types/semver": "^5.5.0",
"class-validator": ">=0.9.1",
"glob": "^7.1.3",
"graphql-query-complexity": "^0.2.3",
"graphql-subscriptions": "^1.0.0",
"semver": "^5.6.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/del": "^3.0.1",
"@types/express": "^4.16.1",
"@types/express-graphql": "^0.6.2",
"@types/graphql": "^14.0.7",
"@types/gulp": "^4.0.5",
"@types/gulp-replace": "0.0.31",
"@types/gulp-shell": "0.0.31",
"@types/ioredis": "^4.0.8",
"@types/jest": "^23.3.14",
"@types/node": "^11.9.4",
"@types/ws": "^6.0.1",
"apollo-cache-control": "^0.5.2",
"apollo-cache-inmemory": "^1.4.3",
"apollo-client": "^2.4.13",
"apollo-engine": "^1.1.2",
"apollo-link": "^1.2.8",
"apollo-link-ws": "^1.0.14",
"apollo-server": "^2.4.6",
"apollo-server-express": "^2.4.6",
"class-transformer": "^0.2.0",
"del": "^3.0.0",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.1.1",
"graphql-playground-middleware-express": "^1.7.11",
"graphql-redis-subscriptions": "^2.0.0",
"graphql-tag": "^2.10.1",
"gulp-replace": "^1.0.0",
"gulp-shell": "^0.6.5",
"gulp-typescript": "^5.0.0",
"gulpclass": "^0.2.0",
"husky": "^1.3.1",
"ioredis": "^4.6.2",
"jest": "^24.1.0",
"lint-staged": "^8.1.4",
"mysql": "^2.16.0",
"prettier": "^1.16.4",
"reflect-metadata": "^0.1.13",
"subscriptions-transport-ws": "^0.9.15",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typedi": "^0.8.0",
"typeorm": "^0.2.13",
"typeorm-typedi-extensions": "^0.2.3",
"typescript": "^3.3.3",
"ws": "^6.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,tests,examples}/**/*.{ts,js}": [
"tslint --fix",
"prettier --write",
"git add"
],
"docs/**/*.md": [
"prettier --write",
"git add"
]
},
"main": "./dist/index.js",
"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": ">= 6.x"
},
"private": true
}