-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.31 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
{
"author": "Akhil Pillai",
"dependencies": {
"@deno/kv": "^0.8.4",
"@discordjs/collection": "^2.1.1",
"discord.js": "^14.16.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"helmet": "^8.0.0",
"jsoning": "^1.0.1",
"node-schedule": "^2.1.1",
"octokit": "^4.0.2",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"qrcode": "^1.5.4"
},
"description": "",
"devDependencies": {
"@octokit/types": "^13.6.2",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.0",
"@types/node-schedule": "^2.1.7",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"knip": "^5.39.2",
"npm-check-updates": "^17.1.11",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"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 urn build-commands && npm start",
"fmt": "prettier -w .",
"knip": "knip",
"lint": "eslint .",
"precommit": "npm urn build",
"start": "tsx src/index.ts",
"up": "ncu -u && npm i"
}
}