feat: initial import

This commit is contained in:
redglow
2026-06-20 14:28:11 +02:00
commit cbb457ea8c
15 changed files with 2022 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"name": "owof-announcements",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "nodemon -w src/server -x tsx src/server/main.ts",
"start": "NODE_ENV=production tsx src/server/main.ts",
"build": "vite build"
},
"dependencies": {
"express": "^5.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vite-express": "*"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^22.15.2",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"nodemon": "^3.1.10",
"vite": "^6.3.3"
}
}