-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"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.9.4",
"@astrojs/mdx": "^3.1.9",
"@astrojs/react": "^3.6.3",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@astrojs/vercel": "^7.8.2",
"@auth/core": "^0.37.4",
"@fontsource-variable/dm-sans": "^5.0.6",
"@fontsource-variable/jetbrains-mono": "^5.0.21",
"@nanostores/react": "^0.7.2",
"@prisma/client": "^5.22.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"astro": "^4.16.14",
"auth-astro": "^4.1.3",
"lucide-react": "^0.408.0",
"nanostores": "^0.10.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
},
"devDependencies": {
"prisma": "^5.22.0"
}
}