feat: Initialize project with configuration files and basic structure

This commit is contained in:
Thibault Pouch
2026-05-01 10:57:26 +02:00
parent 268f7949dc
commit c2920dbbdc
11 changed files with 151 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "nest-intranet",
"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": {
"@pinia/nuxt": "^0.10.0",
"nuxt": "^3.15.0",
"pinia": "^2.3.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"
}
}