-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.09 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.09 KB
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
{
"name": "nuxt-3-starter-pack",
"author": {
"name": "Mikhail Khramtsov",
"url": "https://github.com/hramtsov13"
},
"private": true,
"type": "module",
"scripts": {
"start:dev": "cross-env NODE_ENV=development SITE_ENV=development nuxt dev",
"start:build": "cross-env NODE_ENV=production SITE_ENV=production nuxt build",
"preview": "cross-env NODE_ENV=production SITE_ENV=production nuxt preview",
"generate": "nuxt generate",
"postinstall": "nuxt prepare",
"prepare": "husky",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:fix": "eslint . --fix && prettier --write --list-different .",
"lighthouse": "npx unlighthouse --site http://localhost:3000 --debug --no-cache",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"packages:upgrade": "yarn upgrade-interactive --latest"
},
"dependencies": {
"@nuxt/eslint": "^0.7.1",
"@nuxt/icon": "^1.10.1",
"@nuxt/image": "^1.8.1",
"@nuxtjs/color-mode": "^3.5.1",
"@nuxtjs/seo": "^2.0.0-rc.23",
"@nuxtjs/tailwindcss": "^6.12.2",
"@pinia/nuxt": "^0.7.0",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.460.0",
"nuxt": "^3.14.159",
"nuxt-security": "^2.1.4",
"radix-vue": "^1.9.9",
"shadcn-nuxt": "^0.11.2",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@iconify/collections": "^1.0.493",
"@unlighthouse/nuxt": "^0.10.6",
"@vitest/coverage-istanbul": "^2.1.6",
"@vitest/ui": "^2.1.6",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.9",
"typescript": "^5.6.3",
"vitest": "^2.1.6",
"vue-tsc": "^2.1.10"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"peerDependencies": {
"@nuxtjs/color-mode": "^3.5.1"
}
}