-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.56 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
59
60
61
62
63
64
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"generateLocale": "tsx ./scripts/generateLocale.ts",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky",
"db:generate": "drizzle-kit generate"
},
"lint-staged": {
"*.{ts,js,vue,tsx,jsx}": [
"eslint --fix"
],
"*.{json,md}": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@iconify/json": "^2.2.253",
"@iconify/tailwind": "^1.1.3",
"@nuxt/devtools": "^1.5.1",
"@nuxt/eslint": "^0.5.7",
"@nuxtjs/color-mode": "^3.5.1",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/i18n": "^8.5.5",
"@nuxtjs/seo": "^2.0.0-rc.21",
"@nuxtjs/tailwindcss": "^6.12.1",
"dotenv": "^16.4.5",
"eslint": "^9.11.1",
"eventsource-parser": "^2.0.1",
"husky": "^9.1.6",
"json-stringify-pretty-compact": "^4.0.0",
"nuxt": "^3.13.2",
"nuxt-gtag": "^3.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"undici": "^6.19.8",
"vue": "^3.5.9",
"vue-router": "^4.4.5",
"wrangler": "^3.75.0",
"zx": "^8.1.8"
},
"dependencies": {
"@vueuse/core": "^11.1.0",
"@nuxthub/core": "^0.7.10",
"drizzle-kit": "^0.24.2",
"drizzle-orm": "0.33.0",
"h3-zod": "^0.5.3",
"nuxt-auth-utils": "^0.3.7",
"zod": "^3.23.8"
}
}