forked from piyushg-07/blogzen-OpenSource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 KB
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
{
"name": "blogzen",
"type": "module",
"scripts": {
"build": "nuxt build",
"build:cloud": "prisma generate && nuxt build && prisma migrate deploy",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@nuxt/image": "^1.7.0",
"@prisma/client": "5.15.0",
"@supabase/ssr": "^0.3.0",
"@supabase/supabase-js": "^2.43.3",
"@tanstack/vue-query": "^5.45.0",
"@vee-validate/nuxt": "^4.13.1",
"@vee-validate/zod": "^4.13.1",
"notivue": "^2.4.4",
"nuxt": "^3.12.1",
"pure-rand": "^6.1.0",
"vue": "^3.4.27",
"vue-final-modal": "^4.5.4",
"vue-router": "^4.3.3",
"zod": "^3.23.8"
},
"packageManager": "pnpm@9.2.0+sha512.98a80fd11c2e7096747762304106432b3ddc67dcf54b5a8c01c93f68a2cd5e05e6821849522a06fb76284d41a2660d5e334f2ee3bbf29183bf2e739b1dafa771",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@faker-js/faker": "^8.4.1",
"@nuxt/test-utils": "^3.13.1",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.19",
"daisyui": "^4.12.2",
"happy-dom": "^14.12.0",
"husky": "^9.0.11",
"nuxt-icon": "^0.6.10",
"playwright-core": "^1.44.1",
"postcss": "^8.4.38",
"prisma": "^5.15.0",
"tailwindcss": "^3.4.4",
"tsx": "^4.15.4",
"vitest": "^1.6.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}