mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-17 03:29:31 -07:00
Bump deps (#515)
* chore: add nix flake for reproducible dev environment Signed-off-by: Sped0n <hi@sped0n.com> * refactor: migrate SCSS to modern Sass (@use/@forward) Update mixins to use Sass module functions (map.has-key/get). Configure Vite for modern Sass API. Introduce _foundation.scss for forwarding core modules. Signed-off-by: Sped0n <hi@sped0n.com> * fix: replace deprecated _build with build in frontmatter Signed-off-by: Sped0n <hi@sped0n.com> * chore: add vcache.sh script for vercel build cache management Signed-off-by: Sped0n <hi@sped0n.com> * refactor: migrate to ESLint v9 flat config Remove legacy .eslintrc.json, .eslintignore, and .prettierrc.json. Add eslint.config.mjs with love, prettier, solid, and import rules. Update devDependencies (eslint@9, @typescript-eslint@8, etc.) and scripts. Minor TS fixes: remove eslint-disable, add error logging, simplify conditional. Signed-off-by: Sped0n <hi@sped0n.com> * chore: replace vcache.sh with vercel.sh for Vercel build process Delete vcache.sh script. Add vercel.sh: install Dart Sass v1.93.3, copy generated assets between node_modules and project dirs, run vite:build + hugo build, then copy back. Signed-off-by: Sped0n <hi@sped0n.com> * chore: setup dart-sass and split build steps in GitHub workflow Signed-off-by: Sped0n <hi@sped0n.com> --------- Signed-off-by: Sped0n <hi@sped0n.com>
This commit is contained in:
27
package.json
27
package.json
@@ -7,14 +7,14 @@
|
||||
"private": true,
|
||||
"sideEffects": false,
|
||||
"scripts": {
|
||||
"vite": "vite build --no-watch",
|
||||
"vite": "DISABLE_WATCH=1 vite build",
|
||||
"lint": "eslint . --fix && prettier --write .",
|
||||
"lint:check": "eslint . && prettier . --check",
|
||||
"dev": "run-p vite:dev hugo:dev",
|
||||
"build": "run-s vite:build hugo:build",
|
||||
"server": "run-p vite:server hugo:server",
|
||||
"vite:build": "vite build --no-watch --minify terser",
|
||||
"vite:server": "vite build --minify terser",
|
||||
"vite:build": "DISABLE_WATCH=1 vite build",
|
||||
"vite:server": "vite build",
|
||||
"vite:dev": "vite build --mode development --minify false",
|
||||
"hugo:build": "hugo --logLevel info --source=exampleSite --gc",
|
||||
"hugo:preview": "hugo --logLevel info --source=exampleSite -D --gc",
|
||||
@@ -39,32 +39,29 @@
|
||||
},
|
||||
"homepage": "https://github.com/Sped0n/bridget#readme",
|
||||
"devDependencies": {
|
||||
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
||||
"@typescript-eslint/parser": "^6.21.0",
|
||||
"eslint": "^8.57.0",
|
||||
"@types/node": "^24.10.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.46.4",
|
||||
"@typescript-eslint/parser": "^8.46.4",
|
||||
"eslint": "^9.39.1",
|
||||
"eslint-config-love": "^133.0.0",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"eslint-config-standard": "^17.1.0",
|
||||
"eslint-config-standard-with-typescript": "^43.0.1",
|
||||
"eslint-import-resolver-typescript": "^4.4.4",
|
||||
"eslint-plugin-import": "^2.32.0",
|
||||
"eslint-plugin-n": "^16.6.2",
|
||||
"eslint-plugin-prettier": "^5.5.4",
|
||||
"eslint-plugin-promise": "^6.6.0",
|
||||
"eslint-plugin-solid": "^0.14.5",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "3.6.2",
|
||||
"prettier-plugin-go-template": "^0.0.15",
|
||||
"prettier-plugin-organize-imports": "^4.3.0",
|
||||
"sass": "^1.83.1",
|
||||
"terser": "^5.44.0",
|
||||
"sass": "^1.94.0",
|
||||
"typescript": "^5.9.3",
|
||||
"vite": "^5.4.21",
|
||||
"vite": "^7.2.2",
|
||||
"vite-plugin-solid": "^2.11.10"
|
||||
},
|
||||
"dependencies": {
|
||||
"gsap": "^3.13.0",
|
||||
"solid-js": "^1.9.9",
|
||||
"swiper": "^11.1.15",
|
||||
"solid-js": "^1.9.10",
|
||||
"swiper": "^12.0.3",
|
||||
"tiny-invariant": "^1.3.3"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user