-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.98 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
79
80
81
82
83
84
85
86
87
{
"name": "kyoso",
"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",
"lint": "prettier --check . && eslint . && npx tsc --noEmit",
"format": "prettier --plugin-search-dir . --write .",
"review": "pnpm format && pnpm lint && pnpm check",
"db:generate": "npx drizzle-kit generate",
"db:generate-custom": "npx drizzle-kit generate --custom",
"db:migrate": "npx drizzle-kit migrate",
"db:reset": "node --experimental-specifier-resolution=node --loader ts-node/esm scripts/reset.ts",
"db:seed": "node --experimental-specifier-resolution=node --loader ts-node/esm scripts/seed/index.ts",
"db:studio": "npx drizzle-kit studio",
"db:drop": "npx drizzle-kit drop",
"db:dbml": "node --experimental-specifier-resolution=node --loader ts-node/esm scripts/dbml.ts"
},
"devDependencies": {
"@skeletonlabs/skeleton": "^2.9.0",
"@skeletonlabs/tw-plugin": "^0.3.1",
"@sveltejs/adapter-vercel": "^5.1.1",
"@sveltejs/kit": "^2.5.3",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tailwindcss/forms": "^0.5.7",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^20.11.26",
"@types/platform": "^1.3.6",
"@types/showdown": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@web-std/file": "^3.0.3",
"autoprefixer": "^10.4.18",
"dotenv": "^16.4.5",
"drizzle-dbml-generator": "^0.6.1",
"drizzle-kit": "^0.22.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-svelte": "^2.35.1",
"nanospinner": "^1.1.0",
"pg": "^8.11.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.5.12",
"svelte": "^4.2.12",
"svelte-check": "^3.6.7",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tslib": "^2.4.1",
"typescript": "^5.4.2",
"vite": "^5.1.7",
"vite-plugin-tailwind-purgecss": "^0.2.0"
},
"type": "module",
"dependencies": {
"@floating-ui/dom": "^1.6.3",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"@typeschema/valibot": "^0.13.4",
"@upstash/ratelimit": "^1.0.1",
"@upstash/redis": "^1.28.4",
"discord-oauth2": "^2.12.1",
"drizzle-orm": "^0.31.2",
"isomorphic-dompurify": "^2.4.0",
"jsonwebtoken": "^9.0.0",
"lodash.isequal": "^4.5.0",
"lucide-svelte": "^0.356.0",
"nanoid": "^5.0.6",
"osu-web.js": "^2.3.0",
"platform": "^1.3.6",
"postgres": "^3.4.3",
"sharp": "^0.33.2",
"showdown": "^2.1.0",
"superjson": "^2.2.1",
"svelte-dnd-action": "^0.9.48",
"svelte-portal": "^2.2.1",
"trpc-sveltekit": "^3.6.1",
"valibot": "^0.30.0"
}
}