-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.29 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
{
"name": "discord-app-bot",
"version": "0.4.1",
"type": "module",
"description": "A Discord bot for automating the handling of Google Forms pushed to a server.",
"repository": {
"type": "git",
"url": "https://github.com/adamhl8/discord-app-bot"
},
"author": {
"email": "[email protected]",
"name": "Adam Langbert",
"url": "https://github.com/adamhl8"
},
"license": "MIT",
"scripts": {
"build": "rm -rf ./dist && bun lint && tsc -p ./tsconfig.build.json",
"docker:push": "docker build --platform linux/amd64 . -t ghcr.io/adamhl8/discord-app-bot && docker push ghcr.io/adamhl8/discord-app-bot:latest",
"lint": "tsc --noEmit && prettier --write . && eslint .",
"migrate:dev": "prisma migrate dev",
"prepare": "find .githooks -type f -exec ln -srf {} .git/hooks/ \\; || true",
"start:prod": "prisma migrate deploy && bun ./dist/index.js"
},
"dependencies": {
"@prisma/client": "6.4.0",
"@sindresorhus/slugify": "^2.2.1",
"discord-bot-shared": "^0.14.0",
"discord.js": "^14.18.0",
"get-urls": "^12.1.0",
"prisma": "^6.4.0"
},
"devDependencies": {
"@types/bun": "^1.2.2",
"eslint": "^9.20.1",
"eslint-config-builder": "^0.17.0",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
}
}