-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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
{
"author": "Akhil Pillai",
"dependencies": {
"@discordjs/collection": "^2.1.1",
"canvas": "^3.2.3",
"discord.js": "^14.26.4",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"helmet": "^8.1.0",
"jsoning": "^1.0.1",
"node-schedule": "^2.1.1",
"octokit": "^5.0.5",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"qrcode": "^1.5.4",
"redis": "^5.12.1"
},
"description": "",
"devDependencies": {
"@octokit/types": "^16.0.0",
"@types/express": "^5.0.6",
"@types/node-schedule": "^2.1.8",
"@types/qrcode": "^1.5.6",
"npm-check-updates": "^22.2.0",
"prettier": "^3.8.3",
"tsx": "^4.22.1",
"typescript": "^6.0.3"
},
"license": "GPL-3.0",
"main": "src/index.ts",
"type": "module",
"name": "discog",
"private": true,
"scripts": {
"build-commands": "tsx scripts/buildCommands.ts",
"build-image": "docker build -t akpi816218/discog . && docker push akpi816218/discog",
"check": "tsc",
"deploy": "npm ci && npm start",
"deploy-full": "npm ci && npm run build-commands && npm start",
"fmt": "prettier -w .",
"precommit": "npm run build",
"start": "tsx src/index.ts"
}
}