forked from MichalLytek/type-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.53 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
{
"name": "type-graphql",
"version": "0.14.0",
"main": "./index.js",
"author": {
"name": "Michał Lytek",
"url": "https://github.com/19majkel94"
},
"license": "MIT",
"readmeFilename": "README.md",
"description": "Create GraphQL schema and resolvers with TypeScript, using classes and decorators!",
"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"
],
"scripts": {
"test": "jest --coverage",
"test:ci": "jest --ci --coverage",
"test:watch": "jest --watch",
"verify": "npm run check && npm run lint",
"dev": "node ./dev.js",
"package": "gulp package",
"check": "tsc --noEmit",
"lint": "tslint --project tsconfig.json"
},
"dependencies": {
"@types/glob": "^5.0.35",
"@types/graphql": "^0.13.4",
"@types/node": "*",
"class-validator": ">=0.9.1",
"glob": "^7.1.2",
"graphql": "^0.13.2",
"graphql-query-complexity": "^0.2.0",
"graphql-subscriptions": "^0.5.8",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/del": "^3.0.1",
"@types/gulp": "^4.0.5",
"@types/gulp-replace": "0.0.31",
"@types/gulp-shell": "0.0.31",
"@types/ioredis": "^3.2.13",
"@types/jest": "^23.3.1",
"@types/node": "^10.5.5",
"@types/ws": "^5.1.2",
"apollo-cache-inmemory": "^1.2.6",
"apollo-client": "^2.3.7",
"apollo-engine": "^1.1.2",
"apollo-link": "^1.2.2",
"apollo-link-ws": "^1.0.8",
"class-transformer": "^0.1.9",
"del": "^3.0.0",
"graphql-redis-subscriptions": "^1.5.0",
"graphql-tag": "^2.9.2",
"graphql-yoga": "^1.15.1",
"gulp-replace": "^1.0.0",
"gulp-shell": "^0.6.5",
"gulp-typescript": "^5.0.0-alpha.3",
"gulpclass": "^0.2.0",
"husky": "^1.0.0-rc.13",
"ioredis": "^3.2.2",
"jest": "^23.4.2",
"lint-staged": "^7.2.2",
"mysql": "^2.16.0",
"prettier": "^1.14.0",
"reflect-metadata": "^0.1.12",
"subscriptions-transport-ws": "^0.9.14",
"ts-jest": "^23.1.3",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.3.1",
"typedi": "^0.8.0",
"typeorm": "^0.2.7",
"typeorm-typedi-extensions": "^0.2.1",
"typescript": "^3.0.1",
"ws": "^6.0.0"
},
"husky": {
"hooks": {
"pre-push": "npm run verify",
"pre-commit": "lint-staged"
}
},
"private": true
}