feat: Initialize project with configuration files and basic structure

This commit is contained in:
Thibault Pouch
2026-05-01 10:57:34 +02:00
parent 81da61dd73
commit 7c6bd42fec
8 changed files with 70 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "nest-vitrine",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"test": "vitest run",
"test:watch": "vitest",
"test:update": "vitest --update-snapshots"
},
"dependencies": {
"nuxt": "^3.15.0",
"vue": "^3.5.0"
},
"devDependencies": {
"@nuxt/test-utils": "^3.15.0",
"@nuxtjs/tailwindcss": "^6.13.0",
"@vitest/coverage-v8": "^3.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}