-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.53 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
{
"name": "nuxt3-boilerplate-karpuz",
"version": "0.0.1",
"description": "Karpuz is a Nuxt3 boilerplate with TailwindCSS, Supabase, TypeScript, Prettier, ESLint, VueUse, Pinia, Google Fonts, I18n, and more.",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix",
"update-types": "npx supabase gen types typescript --project-id tuyftpyubgtivyvtpnbg --schema public > types/database.types.ts"
},
"devDependencies": {
"@nuxt/devtools": "^0.6.7",
"@nuxtjs/color-mode": "^3.3.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/google-fonts": "^3.0.2",
"@nuxtjs/i18n": "8.0.0-beta.12",
"@nuxtjs/supabase": "^0.3.8",
"@nuxtjs/tailwindcss": "^6.8.0",
"@pinia/nuxt": "^0.4.11",
"@tailwindcss/typography": "^0.5.10",
"@typescript-eslint/parser": "^6.7.4",
"@vueuse/core": "^10.5.0",
"@vueuse/nuxt": "^10.5.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.0",
"nuxt": "^3.7.4",
"nuxt-icon": "^0.4.2",
"pinia": "^2.1.6",
"prettier": "^3.0.3",
"supabase": "^1.100.1",
"typescript": "^5.2.2",
"vue-tsc": "^1.8.16"
}
}