forked from caiya/graphql-nestjs-typeorm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "server",
"version": "0.0.1",
"description": "NestJS GraphQL TypeScript MicroServices starter project",
"license": "MIT",
"scripts": {
"lint": "tslint --fix 'src/**/*.ts'",
"type-check": "tsc --watch",
"start": "parcel src/main.ts --target node",
"build": "parcel build dist/main.js --target node --detailed-report --public-url '/'",
"test": "jest --watch --coverage",
"predeploy": "yarn build",
"deploy": ""
},
"dependencies": {
"@nestjs/common": "^5.0.1",
"@nestjs/core": "^5.0.1",
"@nestjs/graphql": "^3.0.0",
"@nestjs/typeorm": "^5.0.0",
"apollo-server-fastify": "^1.0.2",
"fastify": "^1.6.0",
"fastify-formbody": "^2.0.0",
"graphql": "^14.0.0-rc.2",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^3.0.2",
"pg-promise": "^8.4.4",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.2.1",
"subscriptions-transport-ws": "^0.9.11",
"typeorm": "^0.2.7",
"ws": "^5.2.0"
},
"devDependencies": {
"@types/graphql": "^0.13.1",
"@types/node": "^10.3.4",
"@types/ws": "^5.1.2",
"jest": "^23.1.0",
"parcel-bundler": "^1.9.2",
"parcel-plugin-typescript": "^1.0.0",
"prettier": "^1.13.5",
"ts-jest": "^22.4.6",
"tslib": "^1.9.2",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-config-standard": "^7.0.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.9.2"
}
}