-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.21 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
{
"private": true,
"scripts": {
"dev": "prisma generate && nuxt dev",
"build": "prisma generate && nuxt build",
"start": "NODE_ENV=production node .output/server/index.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest --run",
"test:components": "vitest --run components/",
"test:watch": "vitest",
"test:ui": "vitest --ui --open",
"postinstall": "nuxt prepare",
"generate": "nuxt generate",
"preview": "DATABASE_URL=file:./db.sqlite nuxt preview",
"typecheck": "nuxt typecheck",
"studio": "prisma studio",
"prepare": "husky"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.568.0",
"@nuxt/image": "^1.5.0",
"@pinia/nuxt": "^0.5.1",
"@prisma/client": "^5.12.1",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"@vitest/coverage-v8": "^1.4.0",
"@vueuse/nuxt": "^10.9.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"consola": "^3.2.3",
"lucide-vue-next": "^0.372.0",
"pinia": "^2.1.7",
"probe-image-size": "^7.2.3",
"radix-vue": "^1.7.2",
"sharp": "^0.33.3",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"trpc-nuxt": "^0.10.21",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@faker-js/faker": "^8.4.1",
"@nuxt/eslint": "^0.3.10",
"@nuxt/test-utils": "^3.12.0",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/html-validator": "^1.7.2",
"@nuxtjs/i18n": "^8.3.0",
"@nuxtjs/seo": "2.0.0-rc.10",
"@nuxtjs/tailwindcss": "^6.12.0",
"@nuxtjs/web-vitals": "^0.2.7",
"@testing-library/vue": "^8.0.3",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/ui": "^1.4.0",
"dayjs": "^1.11.10",
"eslint": "^8.57.0",
"h3": "^1.11.1",
"husky": "^9.0.11",
"nuxt": "3.11.2",
"nuxt-gtag": "^2.0.5",
"nuxt-icon": "^0.6.10",
"nuxt-scheduler": "^0.1.9",
"nuxt-svgo": "^4.0.0",
"playwright": "^1.43.0",
"prisma": "^5.12.1",
"typescript": "^5.4.5",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"uuid": "^9.0.1",
"vite-svg-loader": "^5.1.0",
"vitest": "^1.4.0",
"vue-tsc": "^1.8.27"
},
"pnpm": {
"supportedArchitectures": {
"os": [
"win32",
"current"
],
"cpu": [
"x64"
]
}
}
}