1
0
Fork 0
activist/package.json

59 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2024-11-16 11:40:53 -05:00
{
"name": "designer",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"server": "npx json-server --port 8000 db.json",
2024-11-16 11:40:53 -05:00
"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",
2024-11-16 23:02:23 -05:00
"@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",
2024-12-23 16:14:22 -05:00
"uqr": "^0.1.2",
"vue": "^3.5.22",
2024-11-16 11:40:53 -05:00
"vue-router": "^4.4.5"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.15",
2024-11-16 11:40:53 -05:00
"@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",
2024-11-16 11:40:53 -05:00
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/language-server": "^3.1.1",
2024-11-16 11:40:53 -05:00
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"autoprefixer": "^10.4.20",
2024-11-16 11:40:53 -05:00
"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",
2024-11-16 11:40:53 -05:00
"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"
2024-11-16 11:40:53 -05:00
}
}