-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 1.38 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
{
"name": "eyir",
"version": "0.1.0",
"type": "module",
"description": "A Discord bot for the Warrior Discord Community, Skyhold.",
"repository": "github:adamhl8/eyir",
"author": "adamhl8",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "tsx --trace-warnings ./src/index.ts",
"docker:push": "docker build --platform linux/amd64 . -t ghcr.io/adamhl8/eyir && docker push ghcr.io/adamhl8/eyir:latest",
"format": "prettier --write .",
"lint": "tsc --noEmit && eslint ./src/",
"migrate:dev": "prisma migrate dev",
"prepare": "find .githooks -type f -exec ln -srf {} .git/hooks/ \\; || true",
"start:prod": "prisma migrate deploy && node --enable-source-maps ./dist/index.js"
},
"dependencies": {
"@prisma/client": "5.3.1",
"chokidar": "^3.5.3",
"discord-bot-shared": "^0.14.0",
"discord.js": "^14.13.0",
"prisma": "^5.3.1"
},
"devDependencies": {
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-sonarjs": "^0.21.0",
"eslint-plugin-unicorn": "^48.0.1",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-pkg": "^0.18.0",
"prettier-plugin-sh": "^0.13.1",
"tsx": "^3.12.10",
"typescript": "^5.2.2"
}
}