-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.67 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "nkqueue",
"version": "1.0.0",
"main": "index.js",
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"deploy-commands": "bun src/scripts/deploy-commands.ts",
"migrate": "bunx node-pg-migrate up",
"migrate-down": "bunx node-pg-migrate down",
"migrate-create": "bunx node-pg-migrate create --template-file-name migration-template.mjs",
"migrate-neatqueue": "bun run src/scripts/import-neatqueue-data.ts",
"migrate-strikes": "bun run src/scripts/import-strike-data.ts",
"backfill-mmr": "bun run src/scripts/backfill-mmr-after.ts",
"backfill-transcript-lobby-codes": "bun run src/scripts/backfill-transcript-lobby-codes.ts",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@hono/node-server": "1.19.10",
"@hono/zod-openapi": "^1.1.0",
"@scalar/hono-api-reference": "^0.9.16",
"discord-html-transcripts": "3.2.0",
"discord.js": "^14.23.0",
"dotenv": "^17.0.1",
"glob": "11.1.0",
"hono": "4.12.7",
"lodash-es": "4.18.1",
"os": "^0.1.2",
"pg": "^8.16.3",
"skia-canvas": "^3.0.6",
"tsconfig-paths": "^4.2.0",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.0.10",
"@types/pg": "^8.15.4",
"@types/skia-canvas": "^0.9.2",
"node-pg-migrate": "^8.0.3",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"trustedDependencies": [
"skia-canvas"
]
}