forked from NTUT-NPC/emily
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 924 Bytes
/
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
{
"name": "emily-js",
"type": "module",
"version": "0.1.0",
"description": "北科程式設計研究社 (NPC) 的 Discord 社群管理工具,舊 Emily 的 Discord.js 重製版。",
"scripts": {
"start": "prisma migrate deploy && bun run src/main.ts",
"dev": "bun run --watch src/main.ts",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .js,.ts"
},
"dependencies": {
"@prisma/client": "^5.3.0",
"discord.js": "^14.13.0",
"pino": "^8.15.5",
"pino-caller": "^3.4.0",
"pino-pretty": "^10.2.3",
"prisma": "^5.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.40.3",
"@tsconfig/bun": "^1.0.0",
"@tsconfig/strictest": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"bun-types": "^1.0.1",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"typescript": "^5.2.2"
}
}