Initial commit

This commit is contained in:
2022-05-30 22:33:36 +02:00
commit fae31f19f5
23 changed files with 3979 additions and 0 deletions

37
package.json Normal file
View File

@@ -0,0 +1,37 @@
{
"private": true,
"packageManager": "pnpm@7.1.5",
"scripts": {
"build": "vite build",
"dev": "vite --port 3333 --open",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview"
},
"dependencies": {
"@vueuse/core": "^8.5.0",
"vue": "^3.2.36",
"vue-i18n": "^9.1.10",
"vue-router": "^4.0.15"
},
"devDependencies": {
"@antfu/eslint-config": "^0.24.1",
"@iconify-json/carbon": "^1.1.5",
"@intlify/vite-plugin-vue-i18n": "^3.4.0",
"@types/node": "^17.0.35",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/test-utils": "^2.0.0",
"eslint": "^8.16.0",
"typescript": "^4.7.2",
"unplugin-auto-import": "^0.8.4",
"unplugin-vue-components": "^0.19.5",
"vite": "^2.9.9",
"vite-plugin-pages": "^0.23.0",
"vite-plugin-windicss": "^1.8.4",
"vue-tsc": "^0.34.16",
"windicss": "^3.5.4"
},
"eslintConfig": {
"extends": "@antfu"
}
}