This commit is contained in:
Philippe Torrel
2026-08-03 16:00:02 +02:00
parent 7d8daeb14c
commit 17aa46a4bc
22 changed files with 6855 additions and 81 deletions

View File

@@ -5,10 +5,12 @@
"main": "index.js",
"scripts": {
"start": "run-p server css js",
"js": "npx esbuild dev/scripts/main.js --watch --bundle --sourcemap --outfile=assets/js/build.js",
"js": "npx esbuild dev/scripts/main.ts --watch --bundle --sourcemap --outfile=assets/js/build.js",
"build:js": "npx esbuild dev/scripts/main.ts --bundle --sourcemap --outfile=assets/js/build.js",
"http-server": "npx http-server -p 3000 -c-1",
"server": "npx browser-sync start --server --files 'assets/css/*.css, assets/js/*.js, **/*.html, *.html'",
"css": "sass dev/scss/main.scss:assets/css/main.css -w -q",
"typecheck": "tsc --noEmit",
"dev": "run-p server css js"
},
"keywords": [],
@@ -16,10 +18,13 @@
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"@types/toastify-js": "^1.12.4",
"browser-sync": "^3.0.4",
"esbuild": "^0.28.1",
"npm-run-all": "^4.1.5",
"sass": "^1.101.3"
"sass": "^1.101.3",
"typescript": "^5.9.3"
},
"dependencies": {
"@splidejs/splide": "^4.1.4",