-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.76 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
{
"name": "leek",
"version": "1.0.0",
"description": "general purpose bot",
"license": "GPL-3.0-only",
"main": "dist/index.js",
"private": true,
"scripts": {
"prepare": "husky",
"start": "node dist/index.js",
"dev": "yarn start | pino-pretty",
"build": "tsc",
"build:clean": "yarn clean && yarn build",
"clean": "rm -rf dist",
"clean:all": "yarn clean && rm -rf node_modules",
"lint": "eslint src/**",
"run_migrate": "node dist/migrate.js"
},
"dependencies": {
"@sapphire/decorators": "^6.1.0",
"@sapphire/discord.js-utilities": "^7.3.0",
"@sapphire/framework": "^5.2.1",
"@sapphire/plugin-subcommands": "^6.0.3",
"@sapphire/utilities": "^3.16.2",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"emoji-regex": "^10.3.0",
"ms": "^2.1.3",
"node-fetch": "2",
"pg": "^8.12.0",
"pino": "^8.20.0",
"pino-parseable": "^1.0.3"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/ms": "^0.7.34",
"@types/node": "^20.12.7",
"@types/node-fetch": "^2.6.11",
"@types/pg": "^8.11.6",
"dotenv-vault": "^1.26.2",
"drizzle-kit": "^0.22.8",
"eslint": "^9.0.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"pino-pretty": "^11.2.1",
"prettier": "3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0"
},
"lint-staged": {
"*.ts": "yarn lint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"volta": {
"yarn": "1.22.22",
"node": "21.7.2"
}
}