-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.2 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"type": "module",
"name": "nuxt-app",
"private": true,
"main": ".output/server/index.mjs",
"scripts": {
"test": "pnpm vitest run",
"test-watch": "pnpm vitest",
"build": "nuxt build",
"dev": "nuxt dev --dotenv .env.development.local",
"start": "node --env-file=.env.production.local .",
"generate": "nuxt generate",
"preview": "nuxt preview --dotenv .env.production.local",
"preinstall": "npx only-allow pnpm",
"postinstall": "nuxt prepare",
"prepare": "npx is-in-ci || husky install"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./server/lib/db/cli.ts"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom",
"next"
]
},
"updateConfig": {
"ignoreDependencies": [
"next-auth",
"vitest",
"@sidebase/nuxt-auth"
]
}
},
"devDependencies": {
"@commitlint/cli": "19.2.0",
"@commitlint/config-conventional": "19.1.0",
"@commitlint/types": "19.0.3",
"@faker-js/faker": "8.4.1",
"@headlessui/tailwindcss": "0.2.0",
"@mikro-orm/migrations": "6.1.10",
"@mikro-orm/seeder": "6.1.10",
"@nuxt/devtools": "1.0.8",
"@nuxt/test-utils": "3.12.0",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@nuxtjs/tailwindcss": "6.11.4",
"@sidebase/nuxt-auth": "0.5.0",
"@testing-library/vue": "8.0.2",
"@types/bcrypt": "5.0.2",
"@types/cookie": "0.6.0",
"@types/fs-extra": "11.0.4",
"@types/lodash-es": "4.17.12",
"@types/mime-types": "2.1.4",
"@types/node": "20.11.28",
"@types/uuid": "9.0.8",
"@types/validator": "13.11.9",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"@unhead/vue": "1.8.20",
"@vitejs/plugin-vue": "5.0.4",
"cookie": "0.6.0",
"eslint": "8.57.0",
"eslint-plugin-vue": "9.23.0",
"execa": "8.0.1",
"husky": "9.0.11",
"jsdom": "24.0.0",
"lint-staged": "15.2.2",
"nuxt": "3.11.0",
"nuxt-svgo": "4.0.0",
"tailwindcss": "3.4.1",
"ts-node": "10.9.2",
"vite": "5.1.6",
"vitest": "0.34.4",
"vue": "3.4.21",
"vue-router": "4.3.0"
},
"dependencies": {
"@typeschema/valibot": "0.13.4",
"@headlessui/vue": "1.7.19",
"@mikro-orm/cli": "6.1.10",
"@mikro-orm/core": "6.1.10",
"@mikro-orm/mysql": "6.1.10",
"@nuxt/image": "1.4.0",
"@sindresorhus/slugify": "2.2.1",
"@trpc/client": "10.45.2",
"@trpc/server": "10.45.2",
"@tus/file-store": "1.3.1",
"@tus/server": "1.4.1",
"@uppy/core": "3.9.3",
"@uppy/tus": "3.5.3",
"@vorms/core": "1.2.0-beta.4",
"@vorms/resolvers": "1.2.0-beta.4",
"@vueuse/core": "10.9.0",
"@vueuse/nuxt": "10.9.0",
"bcrypt": "5.1.1",
"cropperjs": "1.6.1",
"date-fns": "3.5.0",
"fs-extra": "11.2.0",
"h3": "1.11.1",
"lodash-es": "4.17.21",
"lucide-vue-next": "0.358.0",
"mime-types": "2.1.35",
"mysql2": "3.9.2",
"nanoid": "5.0.6",
"next-auth": "4.22.5",
"radix-vue": "^1.4.8",
"sharp": "0.33.2",
"superjson": "2.2.1",
"trpc-nuxt": "0.10.20",
"type-is": "1.6.18",
"uuid": "9.0.1",
"valibot": "0.30.0",
"validator": "13.11.0"
}
}