mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-10 11:29:07 +00:00
* On every route change, update local variables from query params * ResultSection is keyed to query to force re-render * Resolved lint warnings * replace webpack w/ vite * update all imports with alias @ and scss * vite environment variables, also typed * upgraded eslint, defined new rules & added ignore comments * resolved linting issues * moved index.html to project root * updated dockerfile w/ build stage before runtime image definition * sign drone config
36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
"name": "seasoned-request",
|
|
"description": "seasoned request app",
|
|
"version": "1.22.17",
|
|
"author": "Kevin Midboe",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development vite",
|
|
"build": "yarn vite build",
|
|
"clean": "rm -r dist 2> /dev/null; rm public/index.html 2> /dev/null; rm -r lib 2> /dev/null",
|
|
"start": "echo 'Start using docker, consult README'",
|
|
"lint": "eslint src --ext .ts,.vue",
|
|
"docs": "documentation build src/api.ts -f html -o docs/api && documentation build src/api.ts -f md -o docs/api.md"
|
|
},
|
|
"dependencies": {
|
|
"chart.js": "3.9.1",
|
|
"vue": "3.5.28",
|
|
"vue-router": "5.0.3",
|
|
"vuex": "4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "^2.0.2",
|
|
"@eslint/js": "^10.0.1",
|
|
"@types/node": "^25.3.0",
|
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
"eslint": "^10.0.1",
|
|
"eslint-config-airbnb-extended": "^3.0.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.5",
|
|
"prettier": "^3.8.1",
|
|
"sass": "1.54.3",
|
|
"typescript": "5.9.3",
|
|
"vite": "^6.0.3"
|
|
}
|
|
}
|