feat: add build pipeline

This commit is contained in:
Morten Olsen
2024-12-10 22:52:35 +01:00
parent d833dc5643
commit c4179ee7b1
17 changed files with 1004 additions and 0 deletions

28
app/package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@plainidx/plainidx": "workspace:*",
"@plainidx/react": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"globals": "^15.12.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.1"
}
}