-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "datadrop",
"version": "2.1.0",
"type": "module",
"main": "./build/index.js",
"scripts": {
"cu": "docker compose up --build",
"cd": "docker compose down",
"start": "tsx ./index.ts | tee -a /var/log/datadrop/console.log",
"build": "rm -rf build/ && tsc",
"deploy:commands": "yarn build && node ./scripts/deploy-commands.cjs",
"lint": "biome check --write index.ts ./src ./scripts",
"env-gen": "node ./scripts/envgen.cjs"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:section-IG/DataDrop.git"
},
"author": "HunteRoi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/section-IG/DataDrop/issues"
},
"homepage": "https://github.com/section-IG/DataDrop#readme",
"dependencies": {
"@dotenvx/dotenvx": "^1.21.1",
"@hunteroi/advanced-logger": "^0.2.0",
"@hunteroi/discord-selfrole": "^4.0.4",
"@hunteroi/discord-temp-channels": "^3.3.0",
"@hunteroi/discord-verification": "^1.5.0",
"@sendgrid/mail": "8.1.3",
"discord-sync-commands": "^0.3.0",
"discord.js": "^14.16.2",
"ts-postgres": "1.3.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.12.7",
"tsx": "^4.19.2",
"typescript": "^5.4.4"
}
}