Use user_id in places we were using username. Still debating this. Start getting this working with API backend, until there were calls to /api/sticker which don't exist in the API yet. Then I rediscovered the local json-server. So now there are 2 api backends. We'll incrementally migrate from the first version to the second. SCSS and tailwind weren't working for nav-items.css. The browser just saw the raw version. So for now, just inlined that. Probably these nav items will become components (if they are shared).
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "designer",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"server": "npx json-server --port 8000 db.json",
|
|
"dev": "vite",
|
|
"build": "run-p type-check \"build-only {@}\" --",
|
|
"preview": "vite preview",
|
|
"test:unit": "vitest",
|
|
"build-only": "vite build",
|
|
"type-check": "vue-tsc --build --force",
|
|
"lint": "eslint . --fix",
|
|
"format": "prettier --write src/"
|
|
},
|
|
"dependencies": {
|
|
"@pinia/colada": "^0.17.6",
|
|
"@primevue/forms": "^4.2.2",
|
|
"@primevue/themes": "^4.4.1",
|
|
"@tailwindcss/postcss": "^4.1.15",
|
|
"pinia": "^3.0.3",
|
|
"primeicons": "^7.0.0",
|
|
"primevue": "^4.4.1",
|
|
"tailwindcss-primeui": "^0.6.1",
|
|
"uqr": "^0.1.2",
|
|
"vue": "^3.5.22",
|
|
"vue-router": "^4.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4.1.15",
|
|
"@tsconfig/node22": "^22.0.0",
|
|
"@types/jsdom": "^27.0.0",
|
|
"@types/node": "^24.9.0",
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"@vitest/eslint-plugin": "1.3.23",
|
|
"@vue/eslint-config-prettier": "^10.1.0",
|
|
"@vue/eslint-config-typescript": "^14.1.3",
|
|
"@vue/language-server": "^3.1.1",
|
|
"@vue/test-utils": "^2.4.6",
|
|
"@vue/tsconfig": "^0.8.1",
|
|
"autoprefixer": "^10.4.20",
|
|
"eslint": "^9.14.0",
|
|
"eslint-plugin-vue": "^10.5.1",
|
|
"jsdom": "^27.0.1",
|
|
"json-server": "^1.0.0-beta.3",
|
|
"npm-run-all2": "^8.0.4",
|
|
"postcss": "^8.4.49",
|
|
"prettier": "^3.3.3",
|
|
"sass-embedded": "^1.81.0",
|
|
"tailwindcss": "^4.1.15",
|
|
"typescript": "~5.9.3",
|
|
"vite": "^7.1.11",
|
|
"vite-plugin-vue-devtools": "^8.0.3",
|
|
"vitest": "^3.2.4",
|
|
"vue-tsc": "^3.1.1"
|
|
}
|
|
}
|