-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.37 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
{
"name": "study-hub",
"version": "1.0.0",
"description": "A personal study portal with 15 technical topics, progress tracking, quizzes, streaks, and Pomodoro timer. Built with SvelteKit 5.",
"license": "MIT",
"author": "Luca Derosas",
"repository": {
"type": "git",
"url": "https://github.com/lucadra/study-hub.git"
},
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/adapter-node": "^5.5.2",
"@sveltejs/kit": "^2.50.1",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/better-sqlite3": "^7.6.13",
"autoprefixer": "^10.4.24",
"chart.js": "^4.5.1",
"katex": "^0.16.28",
"postcss": "^8.5.6",
"shiki": "^3.22.0",
"svelte": "^5.48.2",
"svelte-check": "^4.3.5",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"dependencies": {
"@lucia-auth/adapter-sqlite": "^3.0.2",
"@node-rs/argon2": "^2.0.2",
"better-sqlite3": "^12.6.2",
"canvas-confetti": "^1.9.4",
"lucia": "^3.2.2",
"mermaid": "^11.12.2",
"zod": "^4.3.6"
}
}