forked from nestjs/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.91 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
{
"name": "@nestjs/graphql",
"version": "6.5.3",
"description": "Nest - modern, fast, powerful node.js web framework (@graphql)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.json",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test:integration": "jest --config ./tests/jest-e2e.json"
},
"devDependencies": {
"@nestjs/common": "6.9.0",
"@nestjs/core": "6.9.0",
"@nestjs/platform-express": "6.9.0",
"@nestjs/platform-fastify": "6.9.0",
"@nestjs/testing": "6.9.0",
"@types/graphql": "14.2.3",
"@types/jest": "24.0.23",
"@types/node": "12.12.7",
"@types/normalize-path": "3.0.0",
"apollo-server-express": "2.9.8",
"apollo-server-fastify": "2.9.8",
"class-transformer": "0.2.3",
"graphql": "14.5.8",
"husky": "3.0.9",
"jest": "24.9.0",
"lint-staged": "9.4.2",
"prettier": "1.19.1",
"reflect-metadata": "0.1.13",
"supertest": "4.0.2",
"ts-jest": "24.1.0",
"ts-node": "8.5.0",
"typescript": "3.7.2"
},
"dependencies": {
"@types/graphql": "14.2.3",
"chokidar": "3.2.3",
"fast-glob": "3.1.0",
"graphql-tools": "4.0.6",
"lodash": "4.17.15",
"merge-graphql-schemas": "1.7.0",
"normalize-path": "3.0.0",
"ts-morph": "4.3.2",
"uuid": "3.3.3"
},
"peerDependencies": {
"@nestjs/core": "^6.4.0",
"graphql": "^14.1.1",
"reflect-metadata": "^0.1.12"
},
"optionalDependencies": {
"type-graphql": "^0.17.3"
},
"lint-staged": {
"*.ts": [
"prettier --ignore-path ./.prettierignore --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}