-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "queue-bot",
"main": "src/index.ts",
"module": "src/index.ts",
"scripts": {
"setup": "npm ci",
"start": "node --loader @swc-node/register/esm --no-warnings --enable-source-maps --env-file .env src/index.ts",
"lint": "eslint src --fix"
},
"type": "module",
"devDependencies": {
"@stylistic/eslint-plugin": "^2.1.0",
"@swc-node/register": "^1.9.2",
"@types/better-sqlite3": "^7.6.9",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"typescript": "^5.0.0"
},
"dependencies": {
"better-sqlite3": "^11.0.0",
"cronstrue": "^2.48.0",
"csv-parser": "^3.0.0",
"date-fns": "^3.6.0",
"discord.js": "^14.14.1",
"drizzle-kit": "^0.22.1",
"drizzle-orm": "^0.31.4",
"lodash-es": "^4.17.21",
"moize": "^6.1.6",
"moment-timezone": "^0.5.45",
"node-cron": "^3.0.3",
"topgg-autoposter": "^2.0.2"
}
}