-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.77 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
{
"name": "unison",
"version": "1.1.0",
"description": "Crowdsourced lyrics API for Better Lyrics",
"license": "AGPL-3.0-only",
"main": "src/index.ts",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"build": "pnpm -C web install --frozen-lockfile && pnpm -C web build",
"db:migrate": "tsx src/db/migrate.ts",
"db:migrate:prod": "DATABASE_URL=$DATABASE_URL tsx src/db/migrate.ts",
"scores:recompute": "tsx src/jobs/recompute-scores.ts",
"lint": "biome lint ./src",
"lint:fix": "biome lint ./src --write && biome format ./src --write",
"format": "biome format ./src --write",
"check": "biome check ./src",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "RUN_INTEGRATION=1 vitest run --no-file-parallelism integration.test",
"test:coverage": "vitest run --coverage",
"submit": "tsx cli/submit.ts",
"admin:delete": "tsx scripts/admin-delete.ts",
"dump:dry-run": "tsx scripts/dump-dry-run.ts",
"web:dev": "pnpm -C web dev",
"web:build": "pnpm -C web build",
"web:typecheck": "pnpm -C web typecheck",
"web:lint": "pnpm -C web lint",
"web:test": "pnpm -C web test"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1056.0",
"@axiomhq/js": "^1.4.0",
"@elysiajs/cors": "^1.3.3",
"@elysiajs/cron": "^1.3.3",
"@elysiajs/node": "^1.3.3",
"eld": "^2.1.0",
"elysia": "^1.3.3",
"fast-xml-parser": "^5.5.5",
"ioredis": "^5.4.0",
"obscenity": "^0.4.6",
"pg": "^8.13.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@inquirer/prompts": "^8.3.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"tsx": "^4.19.0",
"typescript": "^5.7.2",
"vitest": "^2.1.0"
}
}