forked from kaogeek/kaogeek-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.07 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
{
"name": "kaogeek-discord-bot",
"version": "1.0.0",
"private": true,
"description": "Discord bot for KaoGeek, built with TypeScript",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"dev:watch": "tsx watch src/index.ts",
"build": "rimraf dist && tsup-node src/index.ts --sourcemap --format esm",
"start": "cross-env NODE_ENV=production node dist/index.js",
"lint": "prettier --check \"**/*.{md,yml,json}\" && eslint . --max-warnings=0",
"lint:warn": "prettier --check \"**/*.{md,yml,json}\" && eslint .",
"format": "prettier --write \"**/*.{md,yml,json}\" && eslint . --fix",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:smoke": "BOT_CONFIG=file:./test/smoke/smoke-bot-config.toml vitest --config vitest.e2e.config",
"typecheck": "tsc && tsc -p test/tsconfig.json",
"generate:prisma": "prisma generate",
"migrate": "prisma db push"
},
"dependencies": {
"@(-.-)/env": "0.3.2",
"@prisma/client": "4.16.1",
"discord.js": "14.11.0",
"dotenv": "16.3.1",
"humanize-ms": "1.2.1",
"node-cron": "3.0.2",
"prisma": "4.16.1",
"toml": "3.0.0",
"unzalgo": "3.0.0",
"zod": "3.21.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@tsconfig/node18": "2.0.1",
"@types/eslint": "8.40.2",
"@types/humanize-ms": "1.2.2",
"@types/node": "18.16.18",
"@types/node-cron": "3.0.8",
"@types/unzalgo": "3.0.0",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"@vitest/coverage-v8": "0.32.2",
"cross-env": "7.0.3",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "47.0.0",
"prettier": "2.8.8",
"rimraf": "5.0.1",
"tsup": "7.1.0",
"tsx": "3.12.7",
"typescript": "5.1.5",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.32.2"
},
"engines": {
"node": "^18.12",
"pnpm": ">=8.6"
},
"packageManager": "[email protected]"
}