Formatting and linting

This commit is contained in:
2026-04-23 15:21:40 -05:00
parent 7191c68390
commit 47c9648f4a
6 changed files with 3101 additions and 76 deletions

View File

@@ -6,7 +6,9 @@
"scripts": {
"dev": "vite build --watch & node --watch index.js",
"build": "vite build",
"start": "node index.js"
"start": "node index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.71",
@@ -28,6 +30,12 @@
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.0",
"globals": "^15.0.0",
"vite": "^6.0.7"
}
}