-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "jive",
"scripts": {
"postinstall": "npx patch-package",
"build": "npx tsup ./src/main.ts --external redlock",
"dev": "npm run build -- --onSuccess=\"MAINTENCE_MODE=true node dist/main.cjs\" --watch",
"start": "node dist/main.cjs",
"test": "dotenv -e .env.test -- npx jest --detectOpenHandles",
"coverage": "npm run test -- --coverage",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"create:migration": "touch \"./src/migrations/$(node -e 'console.log(new Date().getTime())').ts\""
},
"type": "module",
"dependencies": {
"@discordx/utilities": "^5.2.1",
"@napi-rs/canvas": "^0.1.41",
"chalk": "^4.1.2",
"media-extractor": "github:imlunahey/media-extractor",
"vm2": "^3.9.19"
},
"devDependencies": {
"@axiomhq/axiom-node": "^0.12.0",
"@discordx/importer": "^1.2.2",
"@planetscale/database": "^1.7.0",
"@reflet/cron": "^1.3.1",
"@swc/core": "^1.3.61",
"@total-typescript/ts-reset": "^0.4.2",
"@types/cron": "^2.0.1",
"@types/eslint": "^8.40.0",
"@types/jest": "^29.5.1",
"@types/nodemon": "^1.19.2",
"@types/signale": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"cron": "^2.3.1",
"cross-env": "^7.0.3",
"discord.js": "^14.11.0",
"discord.js-pages": "^1.4.4",
"discordx": "^11.7.6",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.2.1",
"error-serializer": "^5.1.0",
"eslint": "^8.41.0",
"eslint-plugin-unicorn": "^47.0.0",
"eta": "^2.2.0",
"exit-hook": "^3.2.0",
"handlebars": "^4.7.7",
"jest": "^29.5.0",
"kysely": "^0.25.0",
"kysely-planetscale": "^1.3.0",
"mee6-levels-api": "^1.3.1",
"nodemon": "^2.0.22",
"outdent": "^0.8.0",
"prexit": "^2.2.0",
"reflect-metadata": "^0.1.13",
"serialize-error": "^11.0.0",
"simple-duration": "^1.1.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"winston": "^3.9.0",
"words-to-numbers": "^1.5.1",
"zod": "^3.21.4",
"zustand": "^4.3.8"
},
"overrides": {
"cron": "$cron",
"@types/cron": "$@types/cron"
}
}