Select Git revision
package.json

Sofiane Lasri authored
- Add Prisma schema for User and PasswordReset models - Include .env.example with DATABASE_URL and URL placeholders - Update nuxt.config.ts for extended Nuxt UI and enhanced devtools - Modify .gitignore to exclude Prisma database files - Add initial Prisma migration SQL script - Update package.json to include Prisma, bcrypt, and related types
This project manages its dependencies using npm.
Learn more
package.json 683 B
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/ui": "^2.19.2",
"@nuxt/ui-pro": "^1.5.0",
"@pinia/nuxt": "^0.7.0",
"@prisma/client": "^5.22.0",
"@vueuse/core": "^11.2.0",
"@vueuse/nuxt": "^11.2.0",
"bcrypt": "^5.1.1",
"nuxt": "^3.14.159",
"pinia": "^2.2.6",
"vue": "latest",
"vue-router": "latest"
},
"overrides": {
"vue": "latest"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"prisma": "^5.22.0"
}
}