add intial changes
parents
Showing
.eslintrc.cjs
0 → 100644
.gitignore
0 → 100644
.prettierrc.json
0 → 100644
.vscode/extensions.json
0 → 100644
README.md
0 → 100644
index.html
0 → 100644
jsconfig.json
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "vue-vite-mfe", | ||
"version": "0.0.0", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite --port 5001 --strictPort", | ||
"build": "vite build", | ||
"serve": "vite preview --port 5001 --strictPort", | ||
"preview": "vite preview --port 5001 --strictPort", | ||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore", | ||
"format": "prettier --write src/" | ||
}, | ||
"dependencies": { | ||
"@originjs/vite-plugin-federation": "^1.3.3", | ||
"@sangarajuguptanisum/vue-custom-components": "^0.0.3", | ||
"pinia": "^2.1.7", | ||
"vue": "^3.3.11", | ||
"vue-router": "^4.2.5" | ||
}, | ||
"devDependencies": { | ||
"@rushstack/eslint-patch": "^1.3.3", | ||
"@vitejs/plugin-vue": "^4.5.2", | ||
"@vitejs/plugin-vue-jsx": "^3.1.0", | ||
"@vue/eslint-config-prettier": "^8.0.0", | ||
"autoprefixer": "^10.4.16", | ||
"eslint": "^8.49.0", | ||
"eslint-plugin-vue": "^9.17.0", | ||
"postcss": "^8.4.32", | ||
"prettier": "^3.0.3", | ||
"tailwindcss": "^3.4.0", | ||
"vite": "^5.0.10" | ||
} | ||
} |
postcss.config.js
0 → 100644
public/favicon.ico
0 → 100644
4.19 KB
src/App.vue
0 → 100644
src/index.css
0 → 100644
src/main.js
0 → 100644
src/router/index.js
0 → 100644
src/stores/counter.js
0 → 100644
tailwind.config.js
0 → 100644
vite.config.js
0 → 100644