-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.2 KB
/
package.json
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
{
"name": "the-first-knife",
"type": "module",
"packageManager": "pnpm@9.4.0",
"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",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"db:generate": "dotenvx run -- drizzle-kit generate",
"db:migrate": "dotenvx run -- drizzle-kit migrate"
},
"prettier": {
"useTabs": true,
"tabWidth": 4,
"printWidth": 100,
"plugins": [
"prettier-plugin-svelte",
"prettier-plugin-tailwindcss"
]
},
"dependencies": {
"@d2api/manifest-web": "^3.2.1",
"@floating-ui/dom": "^1.6.8",
"@lucia-auth/adapter-drizzle": "^1.0.7",
"bits-ui": "^0.21.12",
"bungie-api-ts": "^5.1.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.12",
"drizzle-orm": "^0.32.1",
"embla-carousel": "^8.1.7",
"lucia": "^3.2.0",
"lucide-svelte": "^0.416.0",
"oslo": "^1.2.1",
"postgres": "^3.4.4",
"svelte-persisted-store": "^0.11.0",
"svelte-radix": "^1.1.0",
"tailwind-merge": "^2.4.0",
"tailwind-variants": "^0.2.1"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.6.4",
"@svelte-put/inline-svg": "4.0.0-next.2",
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/adapter-vercel": "^5.4.1",
"@sveltejs/kit": "^2.5.18",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/eslint": "^9.6.0",
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.23.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.43.0",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5",
"svelte": "5.0.0-next.199",
"svelte-check": "^3.8.4",
"tailwindcss": "^3.4.7",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-mkcert": "^1.17.5"
},
"pnpm": {
"patchedDependencies": {
"@d2api/manifest-web@3.2.1": "patches/@d2api__manifest-web@3.2.1.patch",
"@d2api/manifest@7.0.3": "patches/@d2api__manifest@7.0.3.patch"
}
}
}