-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.78 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "nuxt-starter-template",
"type": "module",
"version": "0.0.0",
"private": true,
"description": "Nuxt 3 minimal starter template with TypeScript, ESLint, Vue 3, and more.",
"author": {
"name": "Denish Sharma",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/denishsharma/nuxt-starter-template.git"
},
"bugs": {
"url": "https://github.com/denishsharma/nuxt-starter-template/issues"
},
"keywords": [
"nuxt",
"starter",
"template",
"typescript",
"eslint",
"vue",
"boilerplate",
"nuxt3",
"vue3",
"starter-template",
"kit"
],
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky",
"lint": "eslint . --fix",
"type-check": "vue-tsc --noEmit"
},
"dependencies": {
"vue": "^3.5.6",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@nuxt/eslint": "^0.5.7",
"@nuxt/fonts": "^0.8.0",
"@nuxt/icon": "^1.5.1",
"@nuxt/scripts": "^0.9.2",
"@nuxtjs/color-mode": "^3.5.1",
"@nuxtjs/seo": "2.0.0-rc.21",
"@pinia-plugin-persistedstate/nuxt": "^1.2.1",
"@pinia/nuxt": "^0.5.4",
"@types/node": "^20.16.5",
"@unocss/eslint-plugin": "^0.62.4",
"@unocss/nuxt": "^0.62.4",
"@vueuse/components": "11.1.0",
"@vueuse/core": "11.1.0",
"@vueuse/math": "11.1.0",
"@vueuse/nuxt": "11.1.0",
"clsx": "^2.1.1",
"eslint": "^9.10.0",
"eslint-plugin-command": "^0.2.5",
"eslint-plugin-format": "^0.1.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nuxt": "^3.13.2",
"nuxt-api-party": "^2.0.9",
"nuxt-svgo": "^4.0.6",
"nuxt-typed-router": "^3.6.5",
"overlayscrollbars": "^2.10.0",
"overlayscrollbars-vue": "^0.5.9",
"pinia": "^2.2.2",
"radash": "^12.1.0",
"sass": "^1.79.1",
"std-env": "^3.7.0",
"tailwind-merge": "^2.5.2",
"typescript": "^5.6.2",
"unocss": "^0.62.4",
"unocss-preset-animations": "^1.1.0",
"unocss-preset-useful": "^0.5.2",
"vue-tsc": "^2.1.6",
"zod": "^3.23.8"
},
"resolutions": {
"@typescript-eslint/parser": "^8.0.0-alpha.0",
"eslint": "^9.7.0"
},
"lint-staged": {
"*": [
"pnpm lint"
]
}
}