-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "jeopardy-daily-calendar",
"version": "0.2.0",
"description": "A Discord bot for playing the Jeopardy! Day-to-Day Calendar",
"homepage": "https://github.com/WeirdAlex03/Jeopardy-Calendar-Bot#readme",
"bugs": {
"url": "https://github.com/WeirdAlex03/Jeopardy-Calendar-Bot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WeirdAlex03/Jeopardy-Calendar-Bot.git"
},
"license": "MIT",
"author": "",
"type": "module",
"main": "out/index.js",
"scripts": {
"build": "tsc",
"start": "tsx ./src/index.ts",
"test": "jest",
"lint": "eslint",
"deployCommands": "tsx ./src/scripts/deployCommands",
"__buildNoEmit": "tsc --noEmit"
},
"pre-commit": [
"__buildNoEmit",
"lint",
"test"
],
"dependencies": {
"discord.js": "^14.17.2",
"dotenv": "^16.4.7",
"jeopardy-daily-calendar": "file:",
"reflect-metadata": "^0.2.2",
"tsx": "^4.19.2",
"twemoji": "^14.0.2",
"typeorm": "^0.3.20",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@fastify/pre-commit": "^2.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}