-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.65 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.65 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
44
45
46
47
48
49
50
51
52
53
{
"name": "irtgaming-bot",
"version": "0.0.0",
"description": "Single-guild discord.js bot.",
"private": true,
"type": "module",
"main": "./dist/index.js",
"author": "TAEMBO",
"scripts": {
"db:generate": "drizzle-kit generate --schema=./dist/db/schemas/index.js --dialect=postgresql --out=./migrations",
"db:migrate": "node ./dist/migrate.js",
"lint": "eslint ./src",
"build": "pnpm lint && tsc"
},
"imports": {
"#actions": "./dist/actions/index.js",
"#util": "./dist/util/index.js",
"#structures": "./dist/structures/index.js",
"#db": "./dist/db/index.js",
"#config": "./dist/config.json"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.97",
"discord.js": "^14.26.2",
"drizzle-orm": "^0.44.7",
"farming-simulator-types": "^3.0.0",
"ftp": "^0.3.10",
"lodash": "^4.18.1",
"ms": "^2.1.3",
"node-cron": "^3.0.3",
"polka": "^0.5.2",
"postgres": "^3.4.9",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin-js": "^2.13.0",
"@types/express-serve-static-core": "^5.1.1",
"@types/ftp": "^0.3.36",
"@types/lodash": "^4.17.24",
"@types/ms": "^0.7.34",
"@types/node": "^24.12.2",
"@types/node-cron": "^3.0.11",
"@types/polka": "^0.5.8",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"drizzle-kit": "^0.31.10",
"eslint": "^10.2.0",
"globals": "^15.15.0",
"typescript": "^6.0.2"
},
"packageManager": "pnpm@9.12.2+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228"
}