-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.44 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.44 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
{
"name": "nuxt-app",
"type": "module",
"private": true,
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"pre": "nuxt prepare",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "pnpx nuxthub preview",
"deploy": "pnpx nuxthub deploy",
"types": "nuxt typecheck",
"lint": "TIMING=1 DEBUG=eslint:eslint eslint --cache .",
"check": "pnpm run lint && pnpm run types",
"postinstall": "nuxt prepare",
"prepare": "husky && nuxt prepare",
"clean": "rm -r .nuxt .output node_modules .eslintcache",
"cn": "shadcn-vue add && rsync -a --remove-source-files ../components/ ./components/ && find ../components/ -depth -type d -empty -exec rmdir {} \\;",
"db:gen": "pnpm exec drizzle-kit generate",
"db:mig": "pnpm exec drizzle-kit migrate",
"db:push": "pnpm exec drizzle-kit push"
},
"dependencies": {
"@nuxt/fonts": "^0.10.3",
"@nuxt/icon": "^1.9.1",
"@nuxt/image": "^1.8.1",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/seo": "^2.0.2",
"@nuxtjs/tailwindcss": "^6.12.2",
"@vueuse/core": "^12.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.37.0",
"limiter": "^2.1.0",
"lucide-vue-next": "^0.468.0",
"nuxt": "^3.14.1592",
"nuxt-auth-utils": "^0.5.5",
"nuxt-security": "^2.1.5",
"pg": "^8.13.1",
"postgres": "^3.4.5",
"radix-vue": "^1.9.11",
"resend": "^4.0.1",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.5",
"vue": "latest",
"vue-router": "latest",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "3.11.2",
"@iconify-json/carbon": "^1.2.4",
"@iconify-json/heroicons": "^1.2.1",
"@iconify-json/logos": "^1.2.3",
"@iconify-json/octicon": "^1.2.2",
"@iconify-json/ph": "^1.2.1",
"@iconify-json/simple-icons": "^1.2.14",
"@iconify-json/tabler": "^1.2.10",
"@tailwindcss/typography": "^0.5.15",
"@types/pg": "^8.11.10",
"drizzle-kit": "^0.29.1",
"eslint": "^9.16.0",
"eslint-plugin-format": "^0.1.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"shadcn-vue": "^0.11.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "~5.6",
"typescript-eslint": "^8.17.0",
"vue-tsc": "^2.1.10"
},
"overrides": {
"vite-plugin-checker": "0.8.0",
"vue-tsc": "2.0.29"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
"eslint"
]
}
}