-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
{
"name": "media-converter-backend",
"version": "1.0.2",
"scripts": {
"dev": "NODE_ENV=development bun run --watch src/index.ts",
"start": "NODE_ENV=production bun src/index.ts",
"migrate": "MIGRATOR_ACTION=upgrade bun run src/database/migrator.ts",
"migrate:up": "bun run migrate",
"migrate:down": "MIGRATOR_ACTION=downgrade bun run src/database/migrator.ts",
"lint": "bunx oxlint --ignore-path=.oxlintignore && bunx eslint",
"prepare": "husky"
},
"dependencies": {
"@elysiajs/static": "^1.1.0",
"@elysiajs/swagger": "^1.1.1",
"bullmq": "^5.12.8",
"elysia": "^1.1.6",
"elysia-http-status-code": "^1.0.9",
"ioredis": "^5.4.1",
"kysely": "^0.27.4",
"m3u8-parser": "^7.1.0",
"mpd-parser": "^1.3.0",
"pg": "^8.12.0",
"pino": "^9.3.2",
"pino-loki": "^2.3.0",
"pino-pretty": "^11.2.2"
},
"devDependencies": {
"@types/eslint__js": "^8.42.3",
"@types/pg": "^8.11.6",
"bun-types": "latest",
"eslint": "^9.9.0",
"eslint-plugin-oxlint": "^0.5.0",
"eslint-plugin-sonarjs": "^1.0.4",
"husky": "^9.1.4",
"oxlint": "0.7.0",
"typescript-eslint": "8.0.0"
},
"module": "src/index.js",
"bun-create": {
"start": "bun run src/index.ts"
},
"type": "module",
"peerDependencies": {
"typescript": "^5.4.3"
}
}