-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 2.03 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
{
"name": "hans",
"version": "v2.1.1",
"description": "An open-source Discord bot built with Discord.JS & TypeScript",
"author": "en3sis",
"repository": {
"type": "git",
"url": "https://github.com/en3sis/hans"
},
"license": "MIT",
"main": "src/index.ts",
"scripts": {
"start": "node build/utils/deploy-commands.js && node build/index.js",
"dev": "docker-compose -f docker-compose.dev.yaml up -d && ISDEV=true nodemon hans",
"build": "tsc --project ./",
"types:local": "supabase gen types typescript --local --schema public > src/types/database.types.ts",
"build_dev": "rm -rf ./build && tsc --project ./",
"lint": "eslint . --fix",
"format": "npx prettier --write '**/*.ts'",
"prepare": "npx husky install",
"slash": "yarn build && node build/utils/deploy-commands.js",
"slashDev": "export ISDEV=true && yarn build_dev && node build/utils/deploy-commands.js",
"test": "jest --setupFiles dotenv/config"
},
"devDependencies": {
"@discordjs/rest": "^2.0.1",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.17",
"@types/node-cron": "^3.0.11",
"@types/sentiment": "^5.0.4",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"prettier": "^3.0.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@huggingface/inference": "^2.5.0",
"@supabase/supabase-js": "^2.33.1",
"@types/node-schedule": "^2.1.6",
"axios": "^1.6.0",
"cron": "^3.1.7",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"discord.js": "^14.13.0",
"dotenv": "^16.0.2",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"openai": "^3.2.1",
"redis": "^4.6.8",
"sentiment": "^5.0.2",
"socket.io-client": "^4.5.1",
"supabase": "^1.88.0",
"ts-jest": "^29.1.1"
}
}