-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.3 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.3 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
{
"name": "book-reader",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.20.2",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tailwindcss/typography": "^0.5.16",
"@types/bcryptjs": "^2.4.6",
"@types/dompurify": "^3.2.0",
"@types/eslint": "8.56.0",
"@types/lodash": "^4.17.16",
"@types/node": "^20.17.27",
"@types/path-browserify": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.21",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.30.6",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"postcss": "^8.5.3",
"postcss-load-config": "^5.1.0",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"sass": "^1.86.0",
"svelte": "^4.2.19",
"svelte-check": "^3.8.6",
"tailwindcss": "^3.4.17",
"tslib": "^2.8.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vite": "^5.4.15",
"vitest": "^1.6.1"
},
"type": "module",
"dependencies": {
"@aws-sdk/client-s3": "^3.775.0",
"@libsql/client": "^0.15.2",
"arctic": "^3.6.0",
"bcryptjs": "^2.4.3",
"bits-ui": "^0.21.16",
"clsx": "^2.1.1",
"dexie": "^4.0.11",
"dompurify": "^3.2.4",
"drizzle-orm": "^0.41.0",
"fflate": "^0.8.2",
"formsnap": "^1.0.1",
"idb": "^8.0.2",
"jose": "^5.10.0",
"lodash": "^4.17.21",
"lucide-svelte": "^0.373.0",
"otpauth": "^9.3.6",
"path-browserify": "^1.0.1",
"sveltekit-superforms": "^2.24.0",
"tailwind-merge": "^2.6.0",
"tailwind-variants": "^0.2.1",
"uqr": "^0.1.2",
"zod": "^3.24.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"es5-ext",
"esbuild",
"svelte-preprocess"
]
}
}