-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.63 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "iry",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "bun x --bun vite dev --port 5173",
"build": "bun x cross-env ORIGIN=https://iry.hellings.cc HOST=0.0.0.0 PORT=6969 bun x --bun vite build",
"preview": "bun x --bun vite preview",
"prepare": "bun x --bun svelte-kit sync || echo ''",
"check": "bun x --bun svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --threshold error",
"check:watch": "bun x --bun svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch --threshold error",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"db:push": "bun x --bun drizzle-kit push",
"db:generate": "bun x --bun drizzle-kit generate",
"db:migrate": "bun x --bun drizzle-kit migrate",
"db:studio": "bun x --bun drizzle-kit studio",
"db:seed": "bun x --bun bun run scripts/seed.ts",
"auth:schema": "bun x --bun @better-auth/cli generate --config src/lib/server/auth.ts --output src/lib/server/db/auth.schema.ts --yes",
"bot": "bun run scripts/discord-bot.ts",
"perks:seed": "bun run scripts/seed-perks.ts",
"run": "bun x cross-env HOST=127.0.0.1 ORIGIN=https://iry.hellings.cc PORT=6969 bun build/index.js",
"rundev": "bun x cross-env HOST=127.0.0.1 ORIGIN=https://iry-staging.hellings.cc PORT=6969 bun build/index.js",
"ho": "bun preview --port 6969 --host 127.0.0.1",
"process-email-queue": "bun run scripts/process-email-queue.ts",
"canvas": "cd Spotify-Canvas-API && bun --bun start",
"tracks:test-search-merge-index": "bun run scripts/test-search-merge-index.ts",
"normalize:artists": "bun run scripts/normalize-artist-names.ts",
"albums:reindex-all": "bun run scripts/reindex-all-albums.ts",
"artists:reindex-all": "bun run scripts/reindex-music.ts --artists-only",
"tracks:reindex-all": "bun run scripts/reindex-music.ts --tracks-only",
"artists:reindex-images": "bun run scripts/reindex-artist-images.ts",
"fix:tracks-covers": "bun run scripts/fix-tracks-and-covers.ts",
"bun": "bun run build && bun run build/index.js --port 6969 --host"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/js": "^9.39.3",
"@libsql/client": "^0.17.0",
"@skeletonlabs/skeleton": "^4.12.0",
"@skeletonlabs/skeleton-svelte": "^4.12.0",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/kit": "^2.53.0",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/vite": "^4.2.0",
"@types/bun": "^1.3.9",
"@types/node": "^25.3.0",
"better-auth": "^1.4.18",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.15.0",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^5.53.0",
"svelte-check": "^4.4.3",
"tailwindcss": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1"
},
"dependencies": {
"@jaames/iro": "^5.5.2",
"@lucide/svelte": "^0.564.0",
"@sveltejs/adapter-cloudflare": "^7.2.8",
"@sveltejs/adapter-node": "^5.5.3",
"@types/better-sqlite3": "^7.6.13",
"@types/nodemailer": "^7.0.11",
"@types/spotify-web-api-node": "^5.0.11",
"better-sqlite3": "^12.6.2",
"cross-env": "^10.1.0",
"disconnect": "^1.2.2",
"discord.js": "^14.25.1",
"dotenv": "^17.3.1",
"hasown": "^2.0.2",
"lastfm-typed": "^2.1.0",
"libpq": "^1.9.0",
"lucide-svelte": "^0.564.0",
"mailgun-nodemailer-transport": "^3.0.2",
"nodemailer": "^6.10.1",
"pg": "^8.18.0",
"sharp": "^0.34.5",
"spotify-web-api-node": "^5.0.2",
"which": "^6.0.1"
},
"trustedDependencies": [
"core-js"
]
}