This repository has been archived by the owner on Oct 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.37 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
{
"name": "@henken.club/prototype-backend",
"private": true,
"license": "MIT",
"homepage": "https://github.com/henken-club/prototype-backend#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/henken-club/prototype-backend.git"
},
"bugs": {
"url": "https://github.com/henken-club/prototype-backend/issues"
},
"scripts": {
"build": "nest build",
"dev": "nest start --watch",
"debug": "nest start --watch --debug",
"protogen": "scripty",
"generate-schema": "ts-node -r tsconfig-paths/register src/generate-schema.ts",
"test:unit": "scripty",
"typecheck": "tsc --noEmit",
"lint": "run-s -cn lint:*",
"lint:eslint": "scripty",
"lint:prettier": "scripty",
"lint:cspell": "scripty",
"fmt": "run-s -cn fmt:*",
"fmt:eslint": "yarn lint:eslint --fix",
"fmt:prettier": "yarn lint:prettier --write"
},
"dependencies": {
"@grpc/grpc-js": "^1.3.7",
"@grpc/proto-loader": "^0.6.4",
"@nestjs/common": "^8.0.0",
"@nestjs/config": "^1.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/graphql": "^7",
"@nestjs/jwt": "^8.0.0",
"@nestjs/microservices": "^8.0.6",
"@nestjs/passport": "^8.0.0",
"@nestjs/platform-express": "^8.0.0",
"@prisma/client": "^2.27.0",
"apollo-server-express": "^2.25.2",
"bcrypt": "^5.0.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"graphql": "^15.5.1",
"graphql-scalars": "^1.10.0",
"grpc": "^1.24.11",
"nanoid": "^3.1.23",
"neo4j-driver": "^4.3.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@arkweid/lefthook": "0.7.6",
"@nestjs/cli": "8.0.2",
"@nestjs/testing": "^8.0.0",
"@shopify/eslint-plugin": "^40.3.0",
"@shopify/prettier-config": "^1.1.2",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^26.0.24",
"@types/node": "^16.4",
"@types/passport-jwt": "^3.0.6",
"cspell": "^5.6.6",
"eslint": "^7.30.0",
"eslint-plugin-unused-imports": "^1.1.2",
"grpc-tools": "^1.11.2",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"prisma": "^2.27.0",
"scripty": "^2.0.0",
"ts-jest": "27.0.3",
"ts-loader": "9.2.3",
"ts-node": "10.0.0",
"ts-proto": "^1.82.5",
"tsconfig-paths": "3.10.1",
"typescript": "^4.3.5"
}
}