This commit is contained in:
GarandPLG
2024-08-28 15:35:35 +02:00
parent 7f91ea313f
commit 96650aa674
23 changed files with 4930 additions and 0 deletions

38
package.json Normal file
View File

@@ -0,0 +1,38 @@
{
"name": "garandsite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build-with-tsc": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix"
},
"dependencies": {
"eslint": "^9.9.0",
"vue": "^3.4.38",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@typescript-eslint/parser": "^8.2.0",
"@vitejs/plugin-vue": "^5.1.2",
"autoprefixer": "^10.4.20",
"eslint-plugin-vue": "^9.27.0",
"globals": "^15.9.0",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"vite": "^5.4.2",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.0.29"
}
}