-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.26 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
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
{
"name": "nuxt-one",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "simple-git-hooks",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"commitlint": "commitlint --edit",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/i18n": "^9.4.0",
"@tanstack/vue-table": "^8.21.2",
"@trpc/client": "^11.0.1",
"@trpc/server": "^11.0.1",
"@vueuse/core": "^13.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.41.0",
"lucide-vue-next": "^0.486.0",
"nuxt": "^3.16.1",
"pg": "^8.14.1",
"reka-ui": "^2.1.1",
"shadcn-nuxt": "1.0.3",
"tailwind-merge": "^3.1.0",
"tailwindcss-animate": "^1.0.7",
"trpc-nuxt": "^1.0.4",
"vue": "^3.5.13",
"zod": "^3.24.2"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@commitlint/types": "^19.8.0",
"@iconify-json/radix-icons": "^1.2.2",
"@iconify/vue": "^4.3.0",
"@nuxt/eslint": "^1.3.0",
"@nuxtjs/tailwindcss": "^6.13.2",
"@types/pg": "^8.11.11",
"drizzle-kit": "^0.30.6",
"eslint": "^9.23.0",
"lint-staged": "^15.5.0",
"nuxi": "^3.24.0",
"simple-git-hooks": "^2.12.1",
"typescript": "^5.8.2",
"vue-tsc": "^2.2.8"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vue-tsc": "^2.2.8"
}
},
"allowedDeprecatedVersions": {
"glob": "*",
"inflight": "1",
"@esbuild-kit/core-utils": "3",
"@esbuild-kit/esm-loader": "2"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"simple-git-hooks",
"vue-demi"
]
},
"resolutions": {
"vite": "^6.2.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint $1"
},
"lint-staged": {
"*": "eslint --fix"
}
}