-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.47 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
74
75
76
77
78
79
80
81
82
83
{
"name": "sentry",
"version": "0.11.5",
"description": "One-up your server's moderation",
"main": "dist/index.js",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky install",
"build": "tsc",
"start": "node --enable-source-maps ./",
"start:migrate": "cross-env DATABASE_URL=\"postgresql://postgres:postgres@db:5432/sentry?schema=public\" prisma migrate deploy && npm run start",
"migrate": "cross-env DATABASE_URL=\"postgresql://postgres:postgres@localhost:5432/sentry?schema=public\" prisma migrate dev",
"test": "vitest",
"test:types": "vitest typecheck",
"lint": "eslint \"src/**/*\""
},
"keywords": [
"discord",
"sentry",
"moderation",
"discord-moderation"
],
"author": "Joshua Clements <[email protected]> (https://www.penpow.dev)",
"license": "Apache-2.0",
"homepage": "https://github.com/PenPow/Sentry",
"repository": {
"type": "git",
"url": "https://github.com/PenPow/Sentry"
},
"bugs": {
"url": "https://github.com/PenPow/Sentry/issues"
},
"engines": {
"node": ">=18.10.0"
},
"engineStrict": true,
"dependencies": {
"@prisma/client": "^5.0.0",
"@sapphire/discord.js-utilities": "^7.0.0",
"@sapphire/result": "^2.6.4",
"@sapphire/shapeshift": "^3.9.2",
"@sapphire/time-utilities": "^1.7.9",
"@sentry/integrations": "^7.60.1",
"@sentry/node": "^7.60.1",
"async-lock": "^1.4.0",
"bufferutil": "^4.0.7",
"bullmq": "^4.2.0",
"discord.js": "~14.12.1",
"dotenv": "^16.1.4",
"glob": "^10.3.1",
"ioredis": "^5.3.2",
"prisma-field-encryption": "^1.5.0",
"strip-indent": "^4.0.0",
"tslib": "^2.5.3",
"tslog": "^4.8.2",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.8"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@sentry/cli": "^2.19.0",
"@types/async-lock": "^1.4.0",
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"conventional-changelog-cli": "^3.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.3",
"prettier": "^3.0.0",
"prisma": "^5.0.0",
"typescript": "^5.1.3",
"vitest": "^0.33.0"
}
}