-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.1 KB
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
{
"name": "hoyolab-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/bot.js production",
"build": "rm -rf dist && tsc",
"dev": "nodemon --exec ts-node-dev src/bot.ts development",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^20.10.5",
"@types/node-fetch": "^2.6.9",
"cron-parser": "^4.9.0",
"discord.js": "^14.17.3",
"dotenv": "^16.3.1",
"express": "^4.21.2",
"mongodb": "^6.12.0",
"mongodb-memory-server": "^10.1.3",
"node-cron": "^3.0.3",
"nodemon": "^3.0.3",
"prom-client": "^15.1.3",
"typescript": "^5.3.3",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0"
}
}