-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.59 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
{
"name": "gilbertly.com",
"version": "0.0.3",
"description": "Personal portfolio site",
"main": "src/pages/index.tsx",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "biome lint ./src",
"deploy": "wrangler pages deploy .vercel/output/static --project-name gilbertly-com",
"cf:build": "bun run lint && bunx @cloudflare/next-on-pages",
"cf:preview": "bun run cf:build && wrangler pages dev .vercel/output/static",
"cf:deploy": "bun run cf:build && bun run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gilbertly/.com.git"
},
"author": "Gilbert Gathara",
"license": "MIT",
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"next": "14.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@cloudflare/next-on-pages": "^1.11.0",
"@cloudflare/workers-types": "^4.20240403.0",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.2",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/node": "20.12.3",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.23",
"autoprefixer": "^10.4.19",
"bun": "^1.1.0",
"husky": "^9.0.11",
"postcss": "^8.4.38",
"semantic-release": "^23.0.6",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.3",
"vercel": "^33.6.3",
"wrangler": "^3.45.0"
}
}