-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "epics-template",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "concurrently \"nuxt dev\" \"prisma studio --port 51512\"",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prisma:reset": "prisma migrate reset -f && prisma db seed"
},
"dependencies": {
"@fullcalendar/daygrid": "^6.1.20",
"@fullcalendar/interaction": "^6.1.20",
"@fullcalendar/list": "^6.1.20",
"@fullcalendar/timegrid": "^6.1.20",
"@fullcalendar/vue3": "^6.1.20",
"@nuxt/ui": "4.6.0",
"@prisma/adapter-better-sqlite3": "^7.2.0",
"@prisma/client": "^7.2.0",
"@tiptap/extension-task-item": "^3.22.4",
"@tiptap/extension-task-list": "^3.22.4",
"@tiptap/extension-text-align": "^3.20.1",
"@types/dompurify": "^3.2.0",
"@types/nodemailer": "^7.0.4",
"better-auth": "^1.4.7",
"dompurify": "^3.3.3",
"dotenv": "^17.2.3",
"marked": "^17.0.4",
"nodemailer": "^7.0.11",
"nuxt": "4.4.2",
"vue": "^3.5.25",
"vue-router": "^4.6.4",
"vue-signature-pad": "^3.0.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@iconify-json/heroicons": "^1.2.3",
"@types/better-sqlite3": "^7.6.13",
"concurrently": "^9.2.1",
"prettier": "3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.2.0",
"tsx": "^4.21.0"
},
"pnpm": {
"overrides": {
"prosemirror-model": "^1.22.2",
"prosemirror-state": "^1.4.3",
"prosemirror-transform": "^1.10.2",
"prosemirror-view": "^1.34.2"
}
}
}