-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.17 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
{
"name": "coding.global-web",
"type": "module",
"scripts": {
"dev": "dotenvx run -- vinxi dev",
"build": "dotenvx run -- vinxi build",
"start": "dotenvx run -- vinxi start",
"prettier": "prettier --write .",
"lint": "eslint . --format stylish",
"drizzle": "npm run drop-db & drizzle-kit generate",
"drop-db": "node ./db.migrations/reset-db.js",
"openapi": "orval --config ./orval.config.ts"
},
"dependencies": {
"@auth/core": "^0.37.3",
"@auth/drizzle-adapter": "^1.8.0",
"@elysiajs/eden": "^1.2.0",
"@fontsource-variable/exo-2": "^5.2.0",
"@fontsource/raleway": "^5.2.0",
"@kobalte/core": "^0.13.9",
"@solid-mediakit/auth": "^3.1.2",
"@solid-mediakit/auth-plugin": "^1.2.1",
"@solid-primitives/i18n": "^2.2.0",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.3",
"@solidjs/start": "^1.1.1",
"@tanstack/solid-query": "5.56.2",
"@tanstack/solid-table": "^8.21.2",
"@tanstack/solid-virtual": "^3.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"drizzle-kit": "^0.30.5",
"drizzle-orm": "^0.40.0",
"drizzle-typebox": "0.3.0",
"elysia": "^1.2.23",
"postgres": "^3.4.5",
"sharp": "^0.33.5",
"solid-icons": "^1.1.0",
"solid-js": "^1.9.5",
"solid-sonner": "^0.2.8",
"solid-start-sitemap": "^0.2.2",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"vinxi": "^0.5.3"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.38.3",
"@tailwindcss/postcss": "^4.0.9",
"@tanstack/eslint-plugin-query": "^5.66.1",
"@tanstack/solid-query-devtools": "^5.66.11",
"@types/bun": "^1.2.4",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-solid": "^0.14.5",
"eslint-plugin-tailwindcss": "^3.18.0",
"orval": "^7.6.0",
"postcss": "^8.5.3",
"prettier": "^3.5.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.6",
"typescript": "^5.8.2"
}
}