-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.95 KB
/
package.json
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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"supabase:login": "npx supabase login",
"supabase:types": "npx supabase gen types typescript --db-url postgres://postgres:[your-database-password]@db.nuhchyxmsixjuixlmere.supabase.co:5432/postgres > ./types/schema.d.ts --debug",
"cache:clean": "npm cache clean --force && npx nuxi cleanup",
"type:check": "npx nuxi typecheck",
"postinstall": "nuxt prepare",
"lint": "eslint . --ext .ts,.js,.vue",
"lint:fix": "eslint . --ext .ts,.js,.vue --fix"
},
"devDependencies": {
"@iconify-json/material-symbols": "^1.1.52",
"@iconify-json/mdi": "^1.1.52",
"@nuxt/content": "^2.7.0",
"@nuxt/devtools": "^0.5.5",
"@nuxt/image": "^1.0.0-rc.1",
"@nuxt/test-utils": "^3.6.1",
"@nuxthq/ui": "^2.6.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/partytown": "^1.3.0",
"@nuxtjs/supabase": "^0.3.8",
"@pinia/nuxt": "^0.4.11",
"@sentry/tracing": "^7.60.0",
"@sentry/vue": "^7.58.1",
"@sentry/webpack-plugin": "^2.4.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@typescript-eslint/parser": "^5.60.1",
"@unlighthouse/nuxt": "^0.9.0",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^9.15.1",
"flatted": "^3.2.7",
"libphonenumber-js": "^1.10.37",
"nuxt": "^3.6.3",
"nuxt-security": "^0.13.0",
"nuxt-simple-sitemap": "^2.6.2",
"typescript": "^5.1.6",
"vee-validate": "^4.10.2",
"vitest": "^0.33.0",
"vue-tsc": "^1.8.5",
"zod": "^3.21.4"
},
"dependencies": {
"@heroicons/vue": "^2.0.18",
"@vercel/kv": "^0.2.2",
"drizzle-orm": "^0.27.2",
"postgres": "^3.3.5",
"winston": "^3.10.0"
},
"headwind.classRegex": {
"typescriptvue": "(?:\\bclassName\\s*=\\s*[\\\"\\']([_a-zA-Z0-9\\s\\-\\:\\/]+)[\\\"\\'])|(?:\\btw\\s*`([_a-zA-Z0-9\\s\\-\\:\\/]*)`)"
}
}