🏗️」 wip: added all necessary package for starting

This commit is contained in:
adjoly
2025-06-16 11:32:36 +02:00
parent 19c1b6ae91
commit 48ed4a2894
6 changed files with 1548 additions and 0 deletions

6
.dockerignore Normal file
View File

@ -0,0 +1,6 @@
flake.nix
flake.lock
docker/
node_modules/

View File

@ -33,6 +33,7 @@
nixd
nixfmt-rfc-style
typescript-language-server
nodejs_22
pnpm
];

13
package.json Normal file
View File

@ -0,0 +1,13 @@
{
"dependencies": {
"@fastify/env": "^5.0.2",
"@fastify/jwt": "^9.1.0",
"@tailwindcss/vite": "^4.1.10",
"fastify": "^5.4.0",
"tailwindcss": "^4.1.10",
"typescript": "^5.8.3"
},
"devDependencies": {
"vite": "^6.3.5"
}
}

1517
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

3
pnpm-workspace.yaml Normal file
View File

@ -0,0 +1,3 @@
ignoredBuiltDependencies:
- '@tailwindcss/oxide'
- esbuild

8
vite.config.ts Normal file
View File

@ -0,0 +1,8 @@
import { defineConfig } from 'vite'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [
tailwindcss
],
})