Import initial : code en production sur Hetzner
Some checks are pending
CI / tests (push) Waiting to run
CI / deploiement (push) Blocked by required conditions

This commit is contained in:
Adam Belkacemi 2026-09-07 18:21:38 +00:00
commit cf6ee64e31
43 changed files with 14404 additions and 0 deletions

37
package.json Normal file
View file

@ -0,0 +1,37 @@
{
"name": "lecheminvert",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:unit": "vitest --project unit",
"test:nuxt": "vitest --project nuxt",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@nuxt/test-utils": "^4.1.0",
"maplibre-gl": "^6.0.0",
"nuxt": "^4.5.1",
"vue": "^3.5.40",
"vue-router": "^5.2.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.62.0",
"@tailwindcss/vite": "^4.3.3",
"@vitest/coverage-v8": "^4.1.10",
"@vue/test-utils": "^2.4.11",
"happy-dom": "^20.11.1",
"playwright-core": "^1.62.0",
"tailwindcss": "^4.3.3",
"vitest": "^4.1.10"
}
}