-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "epics-template",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "concurrently \"nuxt dev\" \"prisma studio\"",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prisma:reset": "prisma migrate reset -f && prisma db seed"
},
"dependencies": {
"@nuxt/image": "2.0.0",
"@nuxt/ui": "^4.4.0",
"@prisma/adapter-better-sqlite3": "^7.5.0",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@types/nodemailer": "^7.0.4",
"better-auth": "^1.4.7",
"better-sqlite3": "^12.6.2",
"dotenv": "^17.2.3",
"@faker-js/faker": "10.3.0",
"nodemailer": "^7.0.11",
"nuxt": "^4.3.1",
"pg": "^8.20.0",
"vue": "^3.5.25",
"vue-router": "^4.6.4",
"zod": "^4.2.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"concurrently": "^9.2.1",
"prettier": "3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.5.0",
"tsx": "^4.21.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}