Project start

This commit is contained in:
Liviu Burcusel 2025-10-22 13:16:31 +02:00
commit 5de2a0a8fa
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
10 changed files with 12249 additions and 0 deletions

24
package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "glowing-fiesta",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint-files": "eslint --ext .js,.ts,.vue"
},
"dependencies": {
"@nuxt/eslint": "^1.9.0",
"eslint": "^9.38.0",
"nuxt": "^4.1.3",
"vue": "^3.5.22",
"vue-router": "^4.6.3"
},
"devDependencies": {
"typescript": "^5.9.3"
}
}