Files
artsite/package.json
Arthur DANJOU b78d4ef983 Add new research and academic projects: Dropout Reduces Underfitting, GLM Bikes, ML Loan Prediction, and Breast Cancer Detection
- Implemented a new research project on Dropout strategies in deep learning, including detailed objectives, methodology, and usage instructions.
- Created a project for predicting bike rentals using Generalized Linear Models, outlining objectives, methodology, and key findings.
- Developed a machine learning project for loan prediction, detailing objectives, methodology, and a report on model performance.
- Added a project focused on breast cancer detection using various classification models, including objectives, methodology, and resources.
- Updated package.json with author information and upgraded dependencies.
2026-02-16 18:14:00 +01:00

53 lines
1.4 KiB
JSON

{
"name": "artsite",
"private": true,
"author": {
"email": "arthurdanjou@outlook.fr",
"name": "Arthur Danjou",
"url": "https://arthurdanjou.fr"
},
"packageManager": "bun@1.3.8",
"scripts": {
"build": "nuxi build",
"dev": "nuxi dev",
"preview": "bun run build && wrangler dev",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"deploy": "bun run cf-typegen && bun run build && wrangler deploy",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@libsql/client": "^0.17.0",
"@nuxt/content": "3.11.2",
"@nuxt/eslint": "1.15.1",
"@nuxt/ui": "^4.4.0",
"@nuxthub/core": "0.10.6",
"@nuxtjs/mdc": "0.20.1",
"@nuxtjs/seo": "3.4.0",
"@vueuse/core": "^14.2.1",
"@vueuse/math": "^14.2.1",
"better-sqlite3": "^12.6.2",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"nuxt": "4.3.1",
"nuxt-studio": "1.3.2",
"vue": "3.5.28",
"vue-router": "5.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@iconify-json/devicon": "1.2.58",
"@iconify-json/file-icons": "^1.2.2",
"@iconify-json/logos": "^1.2.10",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/twemoji": "1.2.5",
"@iconify-json/vscode-icons": "1.2.42",
"@types/node": "25.2.3",
"@vueuse/nuxt": "14.2.1",
"eslint": "10.0.0",
"typescript": "^5.9.3",
"vue-tsc": "3.2.4",
"wrangler": "4.65.0"
}
}