-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1000 Bytes
/
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
{
"type": "module",
"private": true,
"prisma": {
"seed": "node prisma/seed.mjs"
},
"scripts": {
"build": "prisma generate && nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && prisma generate",
"typecheck": "nuxt typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"stripe": "^14.20.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.8.0",
"@nuxt/devtools": "^1.0.8",
"@nuxtjs/supabase": "^1.1.7",
"@nuxtjs/tailwindcss": "^6.11.4",
"@pinia/nuxt": "^0.5.1",
"@prisma/client": "^5.10.2",
"@tailwindcss/typography": "^0.5.10",
"@vue-macros/nuxt": "^1.9.21",
"@vueuse/core": "^10.9.0",
"@vueuse/nuxt": "^10.9.0",
"eslint": "^8.57.0",
"nuxt": "^3.10.3",
"pinia": "^2.1.7",
"prisma": "^5.10.2",
"typescript": "^5.4.2",
"vite-plugin-vsharp": "^1.7.3",
"vue-tsc": "^2.0.6"
}
}