Initial mock up of the app
This commit is contained in:
KM
2024-01-22 12:03:56 +01:00
commit 6e4dc5e9db
239 changed files with 32153 additions and 0 deletions

47
package.json Normal file
View File

@@ -0,0 +1,47 @@
{
"name": "zeroone",
"version": "0.1.1",
"private": true,
"scripts": {
"build": "vite build",
"dev": "vite",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"preview": "vite preview",
"serve": "concurrently \"json-server --watch src/data/nanoConfig.json --port=3001\" \"vite\" "
},
"main": "background.js",
"dependencies": {
"@radix-icons/vue": "^1.0.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.0.2",
"@vee-validate/zod": "^4.12.4",
"@vueuse/core": "^10.7.1",
"axios": "^1.6.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"concurrently": "^8.2.2",
"lucide-vue-next": "^0.309.0",
"radix-vue": "^1.3.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"vee-validate": "^4.12.4",
"vue": "^3.3.11",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@vitejs/plugin-vue": "^4.5.2",
"autoprefixer": "^10.4.16",
"electron": "^13.0.0",
"electron-devtools-installer": "^3.1.0",
"json-server": "^1.0.0-alpha.21",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"vite": "^5.0.10",
"vue-cli-plugin-electron-builder": "~2.1.1"
},
"type": "module"
}