Files
JS/webseite-ts-claude/frontend/package.json
Philippe Torrel 17aa46a4bc
2026-08-03 16:00:02 +02:00

35 lines
1.0 KiB
JSON

{
"name": "webseite-sass",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p server css 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": [],
"author": "",
"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",
"typescript": "^5.9.3"
},
"dependencies": {
"@splidejs/splide": "^4.1.4",
"bootstrap": "^5.3.8",
"toastify-js": "^1.12.0"
}
}