move frontend stuff to its own directory

This commit is contained in:
2025-12-18 16:47:47 +01:00
parent 4d07dde87a
commit 45a842b6fe
34 changed files with 0 additions and 0 deletions

42
frontend/package.json Normal file
View File

@@ -0,0 +1,42 @@
{
"name": "cutt",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"bulma": "^1.0.4",
"jwt-decode": "^4.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-sortablejs": "^6.1.4",
"reagraph": "^4.30.7",
"sortablejs": "^1.15.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/sortablejs": "^1.15.9",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^16.5.0",
"react-router": "^7.10.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.50.0",
"vite": "^7.3.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true
}
}