forked from notadd/notadd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.58 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
{
"name": "notadd-appliaction-starter",
"version": "1.0.0",
"description": "The starter application for notadd.",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:watch": "nodemon",
"debug": "node --inspect-brk -r ts-node/register src/main.ts",
"debug:watch": "nodemon --config nodemon-debug.json",
"check": "tslint -p tsconfig.json -c tslint.json",
"fix": "tslint -p tsconfig.json -c tslint.json --fix",
"grpc:gen": "./node_modules/.bin/rxjs-grpc -o src/grpc/generated.ts src/grpc/protobufs/*.proto"
},
"author": "notadd",
"license": "Apache-2.0",
"private": false,
"dependencies": {
"@grpc/proto-loader": "^0.3.0",
"@nestjs/common": "^5.5.0",
"@nestjs/core": "^5.5.0",
"@nestjs/graphql": "^5.5.1",
"@nestjs/microservices": "^5.5.0",
"apollo-server-express": "^2.3.1",
"graphql": "^14.1.0",
"graphql-tools": "^4.0.3",
"graphql-type-json": "^0.2.1",
"grpc": "^1.17.0",
"i18n": "^0.8.3",
"jsonwebtoken": "^8.4.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.3.3",
"typescript": "^3.2.2"
},
"devDependencies": {
"@types/graphql": "^14.0.5",
"@types/graphql-type-json": "^0.1.3",
"@types/i18n": "^0.8.3",
"@types/jsonwebtoken": "^8.3.0",
"@types/node": "^10.12.18",
"nodemon": "^1.18.9",
"rxjs-grpc": "^1.0.0-rxjs6.0",
"ts-node": "^7.0.0",
"tsconfig-paths": "^3.7.0",
"tslint": "^5.12.1"
}
}