-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.47 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
{
"name": "astro",
"type": "module",
"version": "0.0.1",
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"@prisma/engines",
"prisma",
"@prisma/client"
]
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prettier:format": "prettier --write \"**/*.{astro,ts,tsx,js,md,mdx,css,yaml}\"",
"prettier:check": "prettier --check \"**/*.{astro,ts,tsx,js,md,mdx,css,yaml}\"",
"eslint:check": "eslint \"**/*.{astro,ts,tsx,js,md,mdx,css,yaml}\"",
"eslint:fix": "eslint --fix \"**/*.{astro,ts,tsx,js,md,mdx,css,yaml}\""
},
"dependencies": {
"@astrojs/node": "^9.0.0",
"@astrojs/solid-js": "^5.0.1",
"@astrojs/tailwind": "^5.1.4",
"@auth/core": "^0.37.4",
"@auth/drizzle-adapter": "^1.7.4",
"@fontsource-variable/space-grotesk": "^5.1.1",
"@inox-tools/request-nanostores": "^0.2.2",
"@kobalte/core": "^0.13.7",
"@nanostores/solid": "^0.5.0",
"@prisma/client": "6.2.1",
"@solid-primitives/clipboard": "^1.5.10",
"@solid-primitives/event-bus": "^1.0.11",
"@tanstack/solid-query": "^5.64.1",
"@tanstack/solid-query-devtools": "^5.64.1",
"astro": "^5.1.1",
"astro-typed-api": "^0.5.0",
"better-auth": "^1.1.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"js-cookie": "^3.0.5",
"lucide-solid": "^0.471.0",
"nanoid": "^5.0.9",
"nanostores": "^0.11.3",
"simple-stack-form": "^0.1.12",
"solid-js": "^1.9.3",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.10.3",
"@typescript-eslint/parser": "^8.19.0",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"prisma": "^6.2.1",
"typescript-eslint": "^8.19.0"
}
}