generated from agamm/pseo-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.36 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
{
"name": "pseo-next",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "npx prisma generate && next build",
"pages:build": "npx prisma generate && next build && npx @cloudflare/next-on-pages",
"pages:deploy": "NEXT_PUBLIC_SITE_URL=$SITE_URL npx prisma generate && next build && npx @cloudflare/next-on-pages",
"pages:dev": "npx wrangler pages dev .vercel/output/static --compatibility-date=2024-01-01",
"start": "next start",
"lint": "next lint",
"postbuild": "next-sitemap",
"test:e2e": "playwright test",
"db": "npx dotenv -e .env.local -- prisma migrate dev",
"studio": "npx dotenv -e .env.local -- prisma studio",
"dev": "next dev",
"db:push": "dotenv -e .env -- prisma db push",
"prod:build": "npx prisma generate && npx prisma migrate deploy && next build",
"populate-db": "node scripts/populate-db.js"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@libsql/client": "^0.14.0",
"@popicons/react": "^0.0.15",
"@prisma/adapter-libsql": "^5.20.0",
"@prisma/client": "^5.21.1",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"contentlayer": "^0.3.4",
"dayjs": "^1.11.12",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"framer-motion": "^11.5.4",
"geist": "^1.3.1",
"lucide-react": "^0.427.0",
"mapbox-gl": "^3.7.0",
"next": "14.2.11",
"next-contentlayer": "^0.3.4",
"next-sitemap": "^4.2.3",
"next-themes": "^0.3.0",
"nuqs": "^1.19.1",
"react": "18.3.1",
"react-cookie-consent": "^9.0.0",
"react-dom": "18.3.1",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "4.9.5",
"vaul": "^1.1.0"
},
"devDependencies": {
"@types/mapbox-gl": "^3.4.0",
"@types/node": "18.15.3",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@cloudflare/next-on-pages": "^1.13.5",
"@playwright/test": "^1.31.2",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.23",
"prisma": "^5.21.1",
"tailwindcss": "^3.3.1",
"wrangler": "^3.83.0"
}
}