-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
{
"name": "nuxt3-awesome-boilerplate",
"author": "muneebbug",
"version": "1.0.0",
"description": "a Nuxt 3 boilerplate with a lot of useful features.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/muneebbug/nuxt3-awesome-boilerplate"
},
"private": false,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .eslintignore ."
},
"devDependencies": {
"@bg-dev/nuxt-naiveui": "^1.8.0",
"@nuxtjs/device": "^3.1.1",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/google-fonts": "^3.1.3",
"@nuxtjs/tailwindcss": "^6.10.3",
"@pinia-plugin-persistedstate/nuxt": "^1.2.0",
"eslint": "^8.56.0",
"nuxt": "^3.9.0",
"nuxt-headlessui": "^1.1.5",
"nuxt-icon": "^0.6.8",
"nuxt-purgecss": "^2.0.0",
"shadcn-nuxt": "^0.1.0",
"typescript": "^5.3.3",
"vue": "^3.4.3",
"vue-router": "^4.2.5"
},
"dependencies": {
"@pinia/nuxt": "^0.5.1",
"@vueuse/core": "^10.7.1",
"@vueuse/nuxt": "^10.7.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-vue-next": "^0.303.0",
"pinia": "^2.1.7",
"radix-vue": "^1.2.5",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7"
},
"keywords": [
"Nuxt3",
"Boilerplate",
"Vue",
"TailwindCSS",
"TypeScript",
"Naive UI",
"PWA"
]
}