Migration complète du monolithe vers une architecture en couches : - Domain : entités, value objects, services purs, ports - Application : CQRS avec CommandBus/QueryBus, 15+ commandes, 9 requêtes - Tooling : Vite + TypeScript strict + Vitest + path aliases Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
78 lines
1.9 KiB
JSON
Executable File
78 lines
1.9 KiB
JSON
Executable File
{
|
|
"name": "minuteur-dragodinde",
|
|
"version": "1.1.6",
|
|
"description": "Minuteur elevage Dragodinde Dofus 3",
|
|
"main": "dist-electron/main.js",
|
|
"author": "Mickael",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build && electron-builder --win --x64",
|
|
"start": "npm run dev",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:e2e": "npx playwright test"
|
|
},
|
|
"build": {
|
|
"appId": "fr.mickael-pol.minuteur-dragodinde",
|
|
"publish": {
|
|
"provider": "generic",
|
|
"url": "https://gitea.mickael-pol.fr/mickael/dd-timer/releases/download/latest"
|
|
},
|
|
"productName": "Minuteur Dragodinde",
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"files": [
|
|
"dist-vite/**/*",
|
|
"dist-electron/**/*",
|
|
"icon.ico"
|
|
],
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
}
|
|
],
|
|
"sign": null,
|
|
"signingHashAlgorithms": [],
|
|
"icon": "icon.ico",
|
|
"requestedExecutionLevel": "asInvoker"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true,
|
|
"shortcutName": "Minuteur Dragodinde",
|
|
"deleteAppDataOnUninstall": false,
|
|
"runAfterFinish": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.59.1",
|
|
"@types/node": "^25.5.0",
|
|
"@vitest/coverage-v8": "^4.1.2",
|
|
"electron": "32.2.7",
|
|
"electron-builder": "24.13.3",
|
|
"esbuild": "^0.27.4",
|
|
"typescript": "^6.0.2",
|
|
"vite": "^8.0.3",
|
|
"vite-plugin-electron": "^0.29.1",
|
|
"vite-plugin-electron-renderer": "^0.14.6",
|
|
"vitest": "^4.1.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitea.mickael-pol.fr/mickael/dd-timer.git"
|
|
},
|
|
"productName": "Minuteur Dragodinde",
|
|
"dependencies": {
|
|
"electron-updater": "^6.8.3"
|
|
}
|
|
}
|