mirror of
https://github.com/Xevion/the-office.git
synced 2026-01-31 08:26:13 -06:00
feat!: upgrade to Vue3, TypeScript, TailwindCSS, Pinia
- Added tailwindcss, shadcn, vite, typescript, pinia - Removed webpack, ejs, moment, instantsearch, algolia, bootstrap - Disabled most sass, original components - Began redesigning light themed index page
This commit is contained in:
+78
-64
@@ -1,66 +1,80 @@
|
||||
{
|
||||
"name": "the-office",
|
||||
"version": "0.2.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
"build": "vue-cli-service build",
|
||||
"lint": "vue-cli-service lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-svg-core": "^1.2.30",
|
||||
"@fortawesome/free-solid-svg-icons": "^5.14.0",
|
||||
"@fortawesome/vue-fontawesome": "^2.0.0",
|
||||
"@vue/cli-plugin-babel": "^4.4.0",
|
||||
"@vue/cli-plugin-eslint": "^4.4.0",
|
||||
"@vue/cli-service": "^4.4.0",
|
||||
"algoliasearch": "^4.3.1",
|
||||
"axios": ">=0.21.1",
|
||||
"bootstrap": "^4.3.1",
|
||||
"bootstrap-vue": "^2.16.0",
|
||||
"browserslist": "4.20.3",
|
||||
"core-js": "^3.6.5",
|
||||
"dns-packet": "1.3.4",
|
||||
"ejs": "^3.1.7",
|
||||
"file-loader": "^6.1.0",
|
||||
"follow-redirects": "^1.15.0",
|
||||
"instantsearch.css": "7.1.0",
|
||||
"minimist": "1.2.6",
|
||||
"moment": "^2.29.3",
|
||||
"node-forge": "1.3.0",
|
||||
"path-parse": "1.0.7",
|
||||
"postcss": "^7.0.39",
|
||||
"sass": "^1.26.5",
|
||||
"sass-loader": "^8.0.2",
|
||||
"url-loader": "^4.1.0",
|
||||
"url-parse": "1.5.10",
|
||||
"vue": "^2.6.11",
|
||||
"vue-autosuggest": "^2.2.0",
|
||||
"vue-clipboard2": "^0.3.1",
|
||||
"vue-instantsearch": "^3.1.0",
|
||||
"vue-loading-skeleton": "^1.1.9",
|
||||
"vue-progressive-image": "^3.2.0",
|
||||
"vue-router": "^3.2.0",
|
||||
"vue-scrollto": "^2.18.2",
|
||||
"vue-server-renderer": "^2.6.11",
|
||||
"vue-template-compiler": "^2.6.11",
|
||||
"vuex": "^3.5.1",
|
||||
"ws": "6.2.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vue/eslint-config-airbnb": "^5.0.2",
|
||||
"@vue/eslint-config-prettier": "^6.0.0",
|
||||
"babel-eslint": "^10.1.0",
|
||||
"eslint": "^6.7.2",
|
||||
"eslint-plugin-import": "^2.20.2",
|
||||
"eslint-plugin-prettier": "^3.1.4",
|
||||
"eslint-plugin-vue": "^6.2.2",
|
||||
"git-describe": "^4.1.0",
|
||||
"prettier": "^2.1.1"
|
||||
},
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
"last 2 versions",
|
||||
"not dead"
|
||||
]
|
||||
"name": "the-office",
|
||||
"version": "0.2.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "run-p type-check \"build-only {@}\" --",
|
||||
"preview": "vite preview",
|
||||
"test:unit": "vitest",
|
||||
"build-only": "vite build",
|
||||
"type-check": "vue-tsc --build",
|
||||
"lint": "eslint . --fix",
|
||||
"format": "prettier --write src/"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fontsource-variable/roboto-slab": "^5.2.6",
|
||||
"@fontsource/open-sans": "^5.2.6",
|
||||
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
||||
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
||||
"@fortawesome/vue-fontawesome": "^3.0.8",
|
||||
"@tailwindcss/vite": "^4.1.11",
|
||||
"@vueuse/core": "^13.5.0",
|
||||
"algoliasearch": "^5.32.0",
|
||||
"axios": "^1.10.0",
|
||||
"bootstrap": "^5.3.7",
|
||||
"bootstrap-vue-next": "^0.30.4",
|
||||
"browserslist": "^4.25.1",
|
||||
"class-variance-authority": "^0.7.1",
|
||||
"clsx": "^2.1.1",
|
||||
"ejs": "^3.1.10",
|
||||
"instantsearch.css": "^8.5.1",
|
||||
"lucide-vue-next": "^0.525.0",
|
||||
"moment": "^2.30.1",
|
||||
"node-forge": "1.3.0",
|
||||
"pinia": "^3.0.3",
|
||||
"postcss": "^8",
|
||||
"reka-ui": "^2.3.2",
|
||||
"sass": "^1.89.2",
|
||||
"tailwind-merge": "^3.3.1",
|
||||
"tailwindcss": "^4.1.11",
|
||||
"tw-animate-css": "^1.3.5",
|
||||
"vue": "^3.5.17",
|
||||
"vue-autosuggest": "^2.2.0",
|
||||
"vue-router": "^4.5.1",
|
||||
"ws": "^6.2.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@iconify-json/radix-icons": "^1.2.2",
|
||||
"@iconify/vue": "^5.0.0",
|
||||
"@tsconfig/node22": "^22.0.2",
|
||||
"@types/jsdom": "^21.1.7",
|
||||
"@types/node": "^24.0.14",
|
||||
"@vitejs/plugin-vue": "^6.0.0",
|
||||
"@vitejs/plugin-vue-jsx": "^5.0.1",
|
||||
"@vitest/eslint-plugin": "^1.3.4",
|
||||
"@vue/eslint-config-prettier": "^10.2.0",
|
||||
"@vue/eslint-config-typescript": "^14.6.0",
|
||||
"@vue/test-utils": "^2.4.6",
|
||||
"@vue/tsconfig": "^0.7.0",
|
||||
"eslint": "^9.31.0",
|
||||
"eslint-plugin-vue": "~10.2.0",
|
||||
"jiti": "^2.4.2",
|
||||
"jsdom": "^26.1.0",
|
||||
"npm-run-all2": "^8.0.4",
|
||||
"prettier": "3.5.3",
|
||||
"prettier-plugin-tailwindcss": "^0.6.14",
|
||||
"typescript": "~5.8.3",
|
||||
"vite": "^7.0.4",
|
||||
"vite-plugin-vue-devtools": "^7.7.7",
|
||||
"vitest": "^3.2.4",
|
||||
"vue-tsc": "^2.2.12"
|
||||
},
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
"last 2 versions",
|
||||
"not dead"
|
||||
],
|
||||
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user