-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.92 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
{
"name": "vdocs",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"migration:generate": "drizzle-kit generate",
"migration:up:local": "wrangler d1 migrations apply vdocs --local",
"migration:up": "wrangler d1 migrations apply vdocs --remote",
"db:studio:local": "cross-env DB_LOCAL_PATH=$(find .wrangler/state/v3/d1/miniflare-D1DatabaseObject -type f -name '*.sqlite' -print -quit) drizzle-kit studio",
"pages:build": "npx @cloudflare/next-on-pages@1",
"pages:deploy": "npm run pages:build && wrangler pages deploy .vercel/output/static",
"lint": "next lint",
"test": "npx playwright test"
},
"keywords": [
"next",
"nextjs",
"blog"
],
"author": "hieutran094",
"license": "MIT",
"description": "",
"devDependencies": {
"@cloudflare/next-on-pages": "^1.11.3",
"@cloudflare/workers-types": "^4.20240529.0",
"@playwright/test": "^1.44.1",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.13",
"@types/react": "18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"better-sqlite3": "^11.0.0",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.22.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "5.4.5",
"vercel": "^34.2.6",
"wrangler": "^3.67.0"
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"@tailwindcss/container-queries": "^0.1.1",
"classnames": "^2.5.1",
"drizzle-orm": "^0.31.0",
"jose": "^5.4.0",
"jsonwebtoken": "^9.0.2",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-quill": "^2.0.0",
"react-toastify": "^10.0.5",
"slugify": "^1.6.6",
"sonner": "^1.4.41",
"ulidx": "^2.3.0",
"zod": "^3.23.8"
},
"resolutions": {
"string-width": "4.2.3"
},
"packageManager": "yarn@1.22.1",
"volta": {
"node": "18.20.4"
}
}