-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "nest-type-graphql",
"version": "0.1.2",
"description": "Bridge Between graphql and typegrapql",
"author": "Mohammad Hadi Aliakbar",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public"
},
"devDependencies": {
"@nestjs/common": "^5.3.6",
"@nestjs/core": "^5.3.6",
"@types/node": "^10.7.1",
"graphql": "^14.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"reflect-metadata": "^0.1.12",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
},
"dependencies": {
"glob": "^7.1.2",
"graphql": "^14.0.0",
"graphql-tools": "^3.1.1",
"lodash": "^4.17.4",
"type-graphql": "^0.15.0"
},
"peerDependencies": {
"@nestjs/common": "^5.3.6",
"@nestjs/core": "^5.3.6",
"reflect-metadata": "^0.1.12",
"graphql": "^14.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}