-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"author": "Akhil Pillai",
"dependencies": {
"@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",
"luxon": "^3.5.0",
"node-schedule": "^2.1.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/luxon": "^3.4.2",
"@types/node-schedule": "^2.1.7",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"knip": "^5.41.1",
"npm-check-updates": "^17.1.12",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"main": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"build-commands": "tsx scripts/buildCommands.ts",
"build-image": "docker build -t akpi816218/transconlang-discord . && docker push akpi816218/transconlang-discord",
"cache-langspec": "tsx scripts/cacheLangSpec.ts",
"check": "tsc",
"deploy": "npm ci && npm start",
"deploy-full": "npm ci && npm urn build-commands && npm urn cache-langspec && npm start",
"fmt": "prettier -w .",
"knip": "knip",
"lint": "eslint .",
"start": "tsx src/index.ts",
"up": "ncu -u && npm i"
}
}