-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.45 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
{
"name": "lucid-nuxt-2025",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint": "pnpm lint:js && pnpm lint:css",
"lint:js": "eslint .",
"lint:css": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"lintfix": "pnpm lint:js --fix && pnpm lint:css --fix"
},
"lint-staged": {
"*.{js,vue,ts,cjs,mjs}": "eslint",
"*.{vue,css}": "stylelint"
},
"dependencies": {
"@nuxt/content": "^3.0.0",
"@nuxt/image": "^1.9.0",
"@nuxtjs/i18n": "^9.1.3",
"@nuxtjs/robots": "^4.1.11",
"@nuxtjs/sitemap": "^6.1.5",
"@tailwindcss/vite": "^4.0.0",
"nuxt": "^3.14.159",
"nuxt-svgo": "^4.0.8",
"scroll-lock": "^2.1.5",
"tailwindcss": "^4.0.0",
"vue": "latest",
"vue-router": "latest"
},
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@nuxt/eslint": "^0.6.1",
"@nuxtjs/stylelint-module": "^5.2.0",
"eslint": "^9.14.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"stylelint": "^16.10.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1"
}
}