-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.28 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
{
"name": "CS000",
"type": "module",
"version": "0.0.1",
"engines": {
"node": "20"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "prisma generate && astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"db:new": "npx prisma format && npx prisma generate && npx prisma db push",
"postinstall": "prisma generate"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"dependencies": {
"@astrojs/check": "^0.8.2",
"@astrojs/mdx": "^3.1.3",
"@astrojs/react": "^3.6.0",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/vercel": "^7.7.2",
"@auth/core": "^0.32.0",
"@nanostores/react": "^0.7.2",
"@prisma/client": "^5.17.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"astro": "^4.12.2",
"auth-astro": "^4.1.2",
"lucide-react": "^0.408.0",
"nanostores": "^0.10.3",
"prisma": "^5.17.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
}
}