Push existing project to GitLab
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 source diff could not be displayed because it is too large. You can view the blob instead.
package.json
0 → 100644
{ | |||
"name": "vue-project-poc", | |||
"version": "0.0.0", | |||
"private": true, | |||
"type": "module", | |||
"scripts": { | |||
"dev": "vite", | |||
"build": "vite build", | |||
"preview": "vite preview", | |||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore", | |||
"format": "prettier --write src/" | |||
}, | |||
"dependencies": { | |||
"axios": "^1.6.2", | |||
"vue": "^3.3.10", | |||
"vue-router": "^4.2.5", | |||
"vuex": "^4.1.0" | |||
}, | |||
"devDependencies": { | |||
"@rushstack/eslint-patch": "^1.3.3", | |||
"@vitejs/plugin-vue": "^4.5.1", | |||
"@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", | |||
"sass": "^1.69.5", | |||
"tailwindcss": "^3.3.6", | |||
"vite": "^5.0.5" | |||
} | |||
} |
postcss.config.js
0 → 100644
public/favicon.ico
0 → 100644
4.19 KB
src/App.vue
0 → 100644
src/Views/About/About.vue
0 → 100644
src/Views/Cart/Cart.vue
0 → 100644
src/Views/Home/Home.vue
0 → 100644
src/assets/base.css
0 → 100644
src/assets/logo.svg
0 → 100644
src/assets/main.css
0 → 100644
src/main.js
0 → 100644
src/store/index.js
0 → 100644
tailwind.config.js
0 → 100644
vite.config.js
0 → 100644