-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 904 Bytes
/
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
{
"name": "greatest500",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"vercel-build": "next build",
"pages:build": "npx @cloudflare/next-on-pages",
"preview": "npm run pages:build && wrangler pages dev",
"deploy": "npm run pages:build && wrangler pages deploy"
},
"dependencies": {
"next": "14.2.5",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.2",
"@fontsource/open-sans": "^5.0.29",
"@types/mime-types": "^2.1.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"drizzle-kit": "^0.24.2",
"drizzle-orm": "^0.33.0",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"mime-types": "^2.1.35",
"minio": "^8.0.1",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}