-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.16 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.7.4",
"@elysiajs/eden": "^1.2.0",
"@fontsource-variable/exo-2": "^5.1.1",
"@fontsource/raleway": "^5.1.1",
"@kobalte/core": "^0.13.7",
"@solid-mediakit/auth": "^3.1.2",
"@solid-mediakit/auth-plugin": "^1.2.1",
"@solid-primitives/i18n": "^2.1.1",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.2",
"@solidjs/start": "^1.0.10",
"@tanstack/solid-query": "5.56.2",
"@tanstack/solid-table": "^8.20.5",
"@tanstack/solid-virtual": "^3.11.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"drizzle-kit": "^0.30.1",
"drizzle-orm": "^0.38.3",
"drizzle-typebox": "0.2.1",
"elysia": "^1.2.9",
"postgres": "^3.4.5",
"sharp": "^0.33.5",
"solid-icons": "^1.1.0",
"solid-js": "^1.9.3",
"solid-sonner": "^0.2.8",
"solid-start-sitemap": "^0.1.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"vinxi": "^0.5.1"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.32.0",
"@tanstack/eslint-plugin-query": "^5.62.9",
"@tanstack/solid-query-devtools": "^5.62.10",
"@types/bun": "^1.1.14",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-solid": "^0.14.5",
"eslint-plugin-tailwindcss": "^3.17.5",
"orval": "^7.3.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
}
}