-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.37 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
{
"name": "kafkabot",
"description": "Just a simple discord bot",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"compose:up": "docker compose up --build",
"start:dev": "nodemon src/main.ts",
"start:prod": "node build/main.js",
"build": "tsc && tsc-alias",
"migration:run": "npm run typeorm migration:run -- -d ./src/helper/datasource.ts",
"lint": "npx eslint ."
},
"keywords": [
"discord",
"bot",
"multi-purpose bot"
],
"author": "Akari",
"devDependencies": {
"@eslint/js": "^9.23.0",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.13.17",
"@types/node-cron": "^3.0.11",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"nodemon": "^3.1.9",
"tsc-alias": "^1.8.13",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.29.0"
},
"dependencies": {
"axios": "^1.8.4",
"cloudinary": "^2.6.0",
"discord.js": "^14.18.0",
"glob": "^11.0.1",
"hercai": "^12.4.0",
"node-cron": "^3.0.3",
"pg": "^8.14.1",
"puppeteer": "^23.11.1",
"reflect-metadata": "^0.2.2",
"sagiri": "^4.3.0",
"typeorm": "^0.3.21"
}
}