-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.38 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
{
"name": "notes-app-redo",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "npx tsx src/lib/server/server.ts",
"dev": "vite dev",
"build": "vite build",
"build:docker": "docker-compose up --build",
"deploy": "docker build -t notes-app .",
"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",
"format": "prettier --write .",
"lint": "prettier --check . && eslint ."
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.39.1",
"@sveltejs/kit": "^2.48.4",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/vite": "^4.1.17",
"@tiptap/extension-link": "^3.10.5",
"@tiptap/extension-text-align": "^3.10.5",
"@trpc/client": "^11.7.1",
"@trpc/server": "^11.7.1",
"@types/better-sqlite3": "^7.6.13",
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.10.0",
"@typescript-eslint/parser": "^8.46.3",
"autoprefixer": "^10.4.21",
"drizzle-kit": "^0.31.6",
"drizzle-orm": "^0.44.7",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.13.0",
"globals": "^16.5.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.7.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"superjson": "^2.2.5",
"svelte": "^5.43.5",
"svelte-check": "^4.3.3",
"tailwindcss": "^4.1.17",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"vite": "^7.2.2",
"zod": "^4.1.12"
},
"dependencies": {
"@libsql/client": "^0.15.15",
"@sveltejs/adapter-node": "^5.4.0",
"@tiptap/core": "^3.10.5",
"@tiptap/extension-code-block-lowlight": "^3.10.5",
"@tiptap/extension-image": "^3.10.5",
"@tiptap/extension-task-item": "^3.10.5",
"@tiptap/extension-task-list": "^3.10.5",
"@tiptap/starter-kit": "^3.10.5",
"better-sqlite3": "^12.4.1",
"body-parser": "^2.2.0",
"concurrently": "^9.2.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"fs": "^0.0.1-security",
"fs-extra": "^11.3.2",
"lowlight": "^3.3.0",
"mongoose": "^8.19.3",
"nodemon": "^3.1.10",
"socks": "^2.8.7",
"svelte-tiptap": "^3.0.1",
"uuid": "^13.0.0"
}
}