-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "npx nuxthub preview",
"deploy": "npx nuxthub deploy",
"postinstall": "nuxt prepare",
"prepare": "simple-git-hooks",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"db:generate": "drizzle-kit generate"
},
"dependencies": {
"@nuxt/eslint": "^0.6.1",
"@nuxt/ui": "^2.19.2",
"@nuxt/ui-pro": "^1.5.0",
"@nuxthub/core": "^0.8.5",
"drizzle-orm": "^0.36.0",
"nuxt": "^3.14.0",
"nuxt-auth-utils": "^0.5.2",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.6.1",
"drizzle-kit": "^0.27.1",
"eslint": "^9.14.0",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.3",
"vue-tsc": "^2.1.10",
"wrangler": "^3.84.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "pnpm run lint"
}
}