-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 4 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 4 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "markov",
"version": "1.0.0",
"author": "mja00",
"description": "A discord.js bot originally based on Markov chains",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16.11.0"
},
"type": "module",
"exports": [
"./dist/start-bot.js",
"./dist/start-manager.js"
],
"scripts": {
"lint": "eslint . --cache --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --cache --ext .js,.jsx,.ts,.tsx",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"clean": "git clean -xdf --exclude=\"/config/**/*\"",
"clean:dry": "git clean -xdf --exclude=\"/config/**/*\" --dry-run",
"build": "tsc --project tsconfig.json",
"commands:view": "npm run build && node --enable-source-maps dist/start-bot.js commands view",
"commands:register": "npm run build && node --enable-source-maps dist/start-bot.js commands register",
"commands:rename": "npm run build && node --enable-source-maps dist/start-bot.js commands rename",
"commands:delete": "npm run build && node --enable-source-maps dist/start-bot.js commands delete",
"commands:clear": "npm run build && node --enable-source-maps dist/start-bot.js commands clear",
"start": "npm run start:bot",
"start:bot": "npm run build && node --enable-source-maps dist/start-bot.js",
"start:manager": "npm run build && node --enable-source-maps dist/start-manager.js",
"start:pm2": "npm run build && npm run pm2:start",
"pm2:start": "pm2 start process.json",
"pm2:stop": "pm2 stop process.json",
"pm2:delete": "pm2 delete process.json",
"db:add-catchables": "npm run build && node --enable-source-maps dist/scripts/add-catchables.js",
"db:migrate": "npm run build && node --enable-source-maps dist/scripts/migrate.js",
"db:seed": "npm run build && node --enable-source-maps dist/scripts/seed.js",
"db:populate-slugs": "npm run build && node --enable-source-maps dist/scripts/populate-slugs.js",
"db:setup": "npm run db:push && npm run db:seed",
"db:generate": "drizzle-kit generate --config=src/drizzle.config.ts",
"db:push": "drizzle-kit push --config=src/drizzle.config.ts",
"db:studio": "drizzle-kit studio --config=src/drizzle.config.ts"
},
"dependencies": {
"@discordjs/rest": "2.6.0",
"@fal-ai/serverless-client": "^0.15.0",
"class-transformer": "0.5.1",
"class-validator": "0.14.2",
"cron-parser": "^5.3.0",
"discord.js": "14.22.1",
"discord.js-rate-limiter": "1.3.2",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.4",
"express": "5.1.0",
"filesize": "11.0.2",
"form-data": "^4.0.4",
"ink": "^6.5.0",
"linguini": "1.3.1",
"luxon": "3.7.1",
"node-fetch": "3.3.2",
"node-schedule": "2.1.1",
"openai": "^5.15.0",
"pino": "9.9.0",
"pino-pretty": "13.1.1",
"pm2": "^6.0.8",
"postgres": "^3.4.7",
"react": "^19.0.0",
"reflect-metadata": "^0.2.2",
"remove-markdown": "0.6.2"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/express": "4.17.21",
"@types/luxon": "3.7.1",
"@types/node": "^24.3.0",
"@types/node-schedule": "2.1.8",
"@types/remove-markdown": "0.3.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^4.0.9",
"drizzle-kit": "^0.31.4",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unicorn": "^48.0.1",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vitest": "^4.0.9"
}
}