-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
736 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
.next/ | ||
.vercel/ | ||
.vscode/ | ||
.worker-next/ | ||
.wrangler/ | ||
node_modules/ | ||
*.env* | ||
!.env.*.example | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,15 @@ | |
"homepage": "https://lurkr.gg", | ||
"scripts": { | ||
"build": "next build", | ||
"build:worker": "cloudflare", | ||
"deploy:worker": "npm run build:worker && wrangler deploy", | ||
"dev": "next dev", | ||
"dev:worker": "wrangler dev --port 8771", | ||
"fmt": "pnpm run format", | ||
"format": "biome check --write --unsafe", | ||
"lint": "biome check", | ||
"prepare": "husky .github/husky", | ||
"preview:worker": "npm run build:worker && npm run dev:worker", | ||
"start": "next start" | ||
}, | ||
"dependencies": { | ||
|
@@ -39,6 +43,7 @@ | |
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "^1.9.4", | ||
"@opennextjs/cloudflare": "^0.2.1", | ||
"@tailwindcss/typography": "^0.5.15", | ||
"@types/node": "^22.10.2", | ||
"@types/react": "^19.0.1", | ||
|
@@ -50,7 +55,8 @@ | |
"postcss": "^8.4.49", | ||
"tailwind-scrollbar": "^3.1.0", | ||
"tailwindcss": "^3.4.16", | ||
"typescript": "~5.7.2" | ||
"typescript": "~5.7.2", | ||
"wrangler": "^3.95.0" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
|
Oops, something went wrong.