-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.87 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
{
"name": "teyvatdle-genshin-api",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon ./dist",
"start": "node ./dist",
"test": "npm run expire && TEST='true' jest --watchAll --detectOpenHandles && npm run expire",
"coverage": "TEST='true' jest --detectOpenHandles --coverage",
"build": "npm install && npm install --only=dev && npm run codegen && tsc",
"codegen": "graphql-codegen --config ./src/codegen.ts",
"expire": "node ./dist/redis/expireScript.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.9.6",
"@apollo/server": "^4.10.0",
"@graphql-tools/schema": "^10.0.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cron": "^2.4.1",
"dataloader": "^2.2.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.8.1",
"graphql-redis-subscriptions": "^2.6.1",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.15.0",
"helmet": "^7.0.0",
"http-errors": "^2.0.0",
"ioredis": "^5.4.1",
"jest": "^29.6.2",
"morgan": "^1.10.0",
"pg": "^8.11.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.17",
"ws": "^8.13.0"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/introspection": "4.0.3",
"@graphql-codegen/typescript": "4.0.6",
"@graphql-codegen/typescript-resolvers": "4.0.6",
"@types/compression": "^1.7.4",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.5.3",
"@types/morgan": "^1.9.4",
"@types/node": "^20.14.2",
"@types/supertest": "^2.0.12",
"@types/ws": "^8.5.5",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}