Skip to content

Commit

Permalink
reorganize
Browse files Browse the repository at this point in the history
  • Loading branch information
konstrybakov committed Jun 3, 2024
1 parent 6e858ca commit 0fd4512
Show file tree
Hide file tree
Showing 14 changed files with 33 additions and 193 deletions.
Empty file removed .env
Empty file.
13 changes: 0 additions & 13 deletions app/fonts.ts

This file was deleted.

22 changes: 0 additions & 22 deletions app/fonts/JakartaSans-OFL.txt

This file was deleted.

Binary file removed app/fonts/PlusJakartaSans-Variable.ttf
Binary file not shown.
57 changes: 0 additions & 57 deletions app/fonts/Zodiak-FFL.txt

This file was deleted.

Binary file removed app/fonts/Zodiak-Variable.ttf
Binary file not shown.
45 changes: 0 additions & 45 deletions app/globals.css

This file was deleted.

7 changes: 5 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@
"level": "error"
}
}
}
},
"ignore": ["node_modules"]
},
"javascript": {
"formatter": {
"semicolons": "asNeeded"
"semicolons": "asNeeded",
"quoteStyle": "single",
"arrowParentheses": "asNeeded"
}
}
}
Binary file added bun.lockb
Binary file not shown.
6 changes: 5 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
experimental: {
typedRoutes: true
}
};

export default nextConfig;
27 changes: 22 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,41 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "PORT=4000 next dev",
"dev": "PORT=4000 next dev | pino-pretty",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"db:migrate": "bun run lib/db/migrate.ts | pino-pretty",
"db:reset": "bun run lib/db/reset.ts | pino-pretty"
},
"dependencies": {
"@hookform/resolvers": "^3.4.2",
"@neondatabase/serverless": "^0.9.3",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/themes": "^3.0.5",
"drizzle-orm": "^0.31.0",
"http-status-codes": "^2.3.0",
"jotai": "^2.8.1",
"next": "14.2.3",
"normalize-url": "^8.0.1",
"pino": "^9.1.0",
"pino-pretty": "^11.1.0",
"react": "^18",
"react-dom": "^18"
"react-dom": "^18",
"react-hook-form": "^7.51.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.22.1",
"typescript": "^5"
}
}
8 changes: 0 additions & 8 deletions postcss.config.mjs

This file was deleted.

40 changes: 0 additions & 40 deletions tailwind.config.ts

This file was deleted.

1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
Expand Down

0 comments on commit 0fd4512

Please sign in to comment.