diff --git a/README.md b/README.md index a46e5c8..bb0147f 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ npx create-nuxt3-enterprise - eslint/prettier config πŸ’œ - pinia state management 🍍 - histoire for user stories πŸ“— +- zod for schema validation πŸ’Ž - pages πŸ“„ - API routes πŸ—„οΈ - server middlewares πŸ”€ diff --git a/dist/template/package.json b/dist/template/package.json index bc19086..e3d7811 100644 --- a/dist/template/package.json +++ b/dist/template/package.json @@ -33,6 +33,7 @@ "dependencies": { "@pinia/nuxt": "^0.4.4", "pinia": "^2.0.24", - "vitest": "^0.25.2" + "vitest": "^0.25.2", + "zod": "^3.19.1" } } diff --git a/package.json b/package.json index 79e03ae..bd6ab59 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "create-nuxt3-enterprise", - "version": "0.1.3", + "version": "0.2.0", "description": "Create Nuxt 3 app with out of the box features", "keywords": ["nuxt", "nuxt3", "enterprise", "vue", "starter"], "author": "MichaΕ‚ Kuncio (https://michalkuncio.com/)",