-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.57 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
{
"name": "activity-roles",
"description": "A Discord bot that gives roles to users based on their Discord presence",
"version": "1.14.1",
"license": "AGPL-3.0-only",
"author": "tippfehlr <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tippfehlr/activity-roles.git"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.35.0",
"discord.js": "^14.16.3",
"i18n": "^0.15.1",
"kysely": "^0.27.4",
"pg": "^8.13.0",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"table": "^6.8.2"
},
"devDependencies": {
"@prisma/client": "^5.20.0",
"@types/better-sqlite3": "^7.6.11",
"@types/i18n": "^0.13.12",
"@types/node": "^20.16.11",
"@types/pg": "^8.11.10",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"kysely-codegen": "^0.15.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"scripts": {
"bot": "ts-node src/index.ts",
"temp-db": "docker run --rm --name temp-postgres -e POSTGRES_USER=postgres -e POSTGRES_DB=activity-roles -e POSTGRES_PASSWORD=postgres -p 5432:5432 docker.io/postgres",
"kysely-codegen": "./node_modules/.bin/kysely-codegen --out-file src/modules/db.types.ts",
"docker-push": "docker buildx build --platform=linux/amd64,linux/arm64 -t ghcr.io/tippfehlr/activity-roles:test --push .",
"mkdocs": "docker run --rm -it -e UID=1000 -e GID=1000 -p 8000:8000 -v ./docs:/docs squidfunk/mkdocs-material",
"release": "./release.fish"
}
}