-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.88 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
{
"name": "20241016-astro-auth-starter",
"type": "module",
"version": "0.0.1",
"scripts": {
"postinstall": "prisma generate",
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/node": "9.1.0",
"@astrojs/react": "4.2.0",
"@astrojs/tailwind": "6.0.0",
"@astrojs/vercel": "8.0.7",
"@libsql/client": "^0.14.0",
"@lucia-auth/adapter-prisma": "^4.0.1",
"@prisma/adapter-libsql": "^6.3.1",
"@prisma/client": "^6.3.1",
"astro": "5.3.0",
"astro-icon": "^1.1.1",
"lucia": "^3.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.0.6",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.8.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/parser": "^8.12.2",
"@vitest/ui": "^3.0.5",
"eslint": "^9.13.0",
"eslint-plugin-astro": "^1.3.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"happy-dom": "^17.1.0",
"jsdom": "^26.0.0",
"oslo": "^1.2.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"prisma": "^6.3.1",
"tailwindcss": "^4.0.6",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^3.0.5"
}
}