This repository has been archived by the owner on Nov 12, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.51 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
{
"name": "nuxt3-boilerplate",
"version": "1.0.0",
"description": "",
"author": "Hugo Richard",
"private": true,
"license": "MIT License",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"start": "nuxt start",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"format": "prettier --write \"**/*.js\" \"**/*.vue\" ",
"prisma:generate": "prisma generate",
"prisma:pull": "prisma db pull",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:push": "prisma db push"
},
"prisma": {
"seed": "node prisma/seed.mjs"
},
"devDependencies": {
"@headlessui/vue": "^1.7.7",
"@heroicons/vue": "^2.0.13",
"@nuxt/image-edge": "1.0.0-27840416.dc1ed65",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/i18n": "8.0.0-beta.9",
"@nuxtjs/style-resources": "^1.2.1",
"@nuxtjs/supabase": "^0.3.0",
"@nuxtjs/tailwindcss": "^6.2.0",
"@prisma/client": "^4.9.0",
"@tailwindcss/forms": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vueuse/core": "^9.11.1",
"@vueuse/nuxt": "^10.3.0",
"eslint": "^8.32.0",
"nuxt": "3.4.3",
"nuxt-headlessui": "^1.1.1",
"nuxt-icon": "^0.2.6",
"prettier": "^2.8.3",
"prisma": "^4.9.0",
"sass": "^1.57.1",
"stripe": "^11.7.0",
"typescript": "^4.9.4"
}
}