-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.86 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
{
"name": "kd_serv",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon",
"gen:schema": "npx prisma generate",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.2.2",
"@as-integrations/fastify": "^1.2.0",
"@fastify/compress": "^6.2.0",
"@fastify/cors": "^8.2.0",
"@fastify/helmet": "^10.1.0",
"@fastify/rate-limit": "^7.6.0",
"@prisma/client": "^4.7.1",
"@types/bcrypt": "^5.0.0",
"@types/graphql-fields": "^1.3.4",
"@types/safe-regex": "^1.1.4",
"bcrypt": "^5.1.0",
"class-validator": "^0.13.2",
"dotenv-flow": "^3.2.0",
"envalid": "^7.3.1",
"fastify": "^4.10.2",
"graphql": "^16.6.0",
"graphql-redis-subscriptions": "^2.5.0",
"graphql-request": "^5.0.0",
"graphql-scalars": "^1.20.1",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.11.2",
"ioredis": "^5.2.4",
"jsonwebtoken": "^8.5.1",
"pino-pretty": "^9.1.1",
"prisma": "^4.7.1",
"reflect-metadata": "^0.1.13",
"safe-regex": "^2.1.1",
"tslib": "^2.4.1",
"tsyringe": "^4.7.0",
"type-graphql": "2.0.0-beta.1",
"typedi": "^0.10.0",
"typegraphql-prisma": "^0.23.1"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.12",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-eslint-plugin": "^5.0.6",
"eslint-plugin-internal": "0.0.1-security",
"eslint-plugin-type-graphql": "^1.0.0",
"graphql-fields": "^2.0.3",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"typescript": "^4.9.4"
},
"nodemonConfig": {
"ext": "*.ts"
}
}