-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.12 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "dnd-tracker",
"version": "3.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "nuxt typecheck",
"sb:types": "npx supabase gen types --lang=typescript --project-id nvqbozqxmtyvuslofrvs > shared/types/database-generated.ts",
"prepare": "husky",
"e2e": "npx playwright test",
"test": "vitest",
"deps": "npx taze -w"
},
"engines": {
"pnpm": "please-use-npm",
"yarn": "please-use-npm",
"npm": ">=10.0.0",
"node": ">=24.0.0"
},
"dependencies": {
"@c15t/scripts": "^2.1.0",
"@dicebear/collection": "^9.4.2",
"@dicebear/core": "^9.4.2",
"@formkit/auto-animate": "^0.9.0",
"@nuxt/eslint": "^1.15.2",
"@nuxt/icon": "^2.2.2",
"@nuxt/image": "^2.0.0",
"@nuxtjs/color-mode": "^4.0.0",
"@nuxtjs/i18n": "^10.3.0",
"@nuxtjs/seo": "^4.0.2",
"@nuxtjs/supabase": "^2.0.8",
"@oslojs/jwt": "^0.3.0",
"@sentry/nuxt": "^10.53.1",
"@tailwindcss/vite": "^4.3.0",
"@tanstack/vue-query": "^5.100.10",
"@tanstack/vue-table": "^8.21.3",
"@tiptap/extension-highlight": "^3.23.4",
"@tiptap/extensions": "^3.23.4",
"@tiptap/pm": "^3.23.4",
"@tiptap/starter-kit": "^3.23.4",
"@tiptap/vue-3": "^3.23.4",
"@types/canvas-confetti": "^1.9.0",
"@unhead/vue": "^2.1.15",
"@unlok-co/nuxt-stripe": "^4.0.2",
"@vee-validate/zod": "^4.15.1",
"@vitejs/plugin-vue": "^6.0.7",
"@vue-email/components": "^0.0.21",
"@vue-email/render": "^0.0.9",
"@vueuse/core": "^14.3.0",
"@vueuse/nuxt": "^14.3.0",
"c15t": "^2.1.0",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dedupe": "^4.0.3",
"deepmerge": "^4.3.1",
"dompurify": "^3.4.3",
"driver.js": "^1.4.0",
"markdown-it": "^14.1.1",
"motion-v": "^2.2.1",
"nuxt": "^4.4.5",
"nuxt-authorization": "^0.3.5",
"nuxt-zod-i18n": "^1.12.1",
"oslo": "^1.2.1",
"reka-ui": "^2.9.7",
"shadcn-nuxt": "^2.7.3",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"tw-animate-css": "^1.4.0",
"type-fest": "^5.6.0",
"unstorage": "^1.17.5",
"vee-validate": "^4.15.1",
"vue": "latest",
"vue-dompurify-html": "^5.3.0",
"vue-router": "latest",
"vue-tippy": "^6.7.1",
"ybug-vue": "^1.2.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@iconify-json/tabler": "^1.2.35",
"@inspira-ui/plugins": "^0.0.2",
"@nuxt/test-utils": "^4.0.3",
"@playwright/test": "^1.60.0",
"@tanstack/eslint-plugin-query": "^5.100.10",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.8.0",
"@vue/test-utils": "^2.4.10",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.6",
"vue-tsc": "^3.2.9"
},
"overrides": {
"@vercel/nft": "^0.27.10",
"parse5": "^6.0.1",
"vue": "latest"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix"
}
}