-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.33 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
66
67
68
69
70
71
72
73
{
"name": "reindeer",
"description": "🦌 A Discord bot by BSR that helps server admins manage user reports more efficiently and organised.",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"start": "node .",
"dev": "nodemon",
"test": "yarn build:ci && yarn lint:check && yarn format:check && yarn validate",
"test:fix": "yarn build:ci && yarn lint && yarn format && yarn format:prisma",
"build": "tsc && yarn run sentry:sourcemaps",
"build:ci": "tsc",
"build:dev": "tsc --watch",
"push": "prisma db push",
"generate": "prisma generate",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"format": "prettier .",
"format:check": "prettier --check .",
"format:prisma": "prisma format",
"validate": "DB_CONNECTION_URL=postgres:// prisma validate",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org blue-shark-river --project reindeer ./dist && sentry-cli sourcemaps upload --org blue-shark-river --project reindeer ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GodderE2D/Reindeer.git"
},
"author": "GodderE2D <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GodderE2D/Reindeer/issues"
},
"homepage": "https://reindeer.bsr.gg/",
"type": "module",
"engines": {
"node": ">=16.11.0"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"@prisma/client": "^5.15.0",
"@sapphire/framework": "^5.2.1",
"@sapphire/plugin-subcommands": "^6.0.3",
"@sapphire/utilities": "^3.16.2",
"@sentry/node": "^7.116.0",
"dayjs": "^1.11.11",
"discord.js": "14.14.1",
"dotenv": "^16.4.5",
"fastify": "^4.27.0",
"ms": "^2.1.3",
"pm2": "^5.4.0",
"prom-client": "^15.1.2",
"topgg-autoposter": "^2.0.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"nodemon": "^3.1.3",
"prettier": "^3.3.1",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^5.15.0",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]"
}