-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"lint": "npx stylelint ./app/assets/css/**/*.css --fix && npx stylelint ./app/{components,pages,layouts}/**/*.vue --fix && eslint . --fix",
"postinstall": "nuxt prepare",
"typecheck": "npx nuxi typecheck .",
"prepare": "husky"
},
"lint-staged": {
"*.{vue,ts,mjs,css}": [
"npm run lint",
"npm run typecheck"
]
},
"engines": {
"node": "22.x"
},
"dependencies": {
"@nuxt/eslint": "^0.7.6",
"@nuxt/fonts": "^0.10.3",
"@nuxt/icon": "^1.10.3",
"@nuxt/image": "^1.9.0",
"@tailwindcss/vite": "^4.0.3",
"@vueuse/nuxt": "^12.5.0",
"nuxt-security": "^2.1.5",
"radix-vue": "^1.9.13",
"tailwind-merge": "^3.0.1",
"tailwind-variants": "^0.3.1",
"tailwindcss": "^4.0.3",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@nuxt/devtools": "^1.7.0",
"cssnano": "^7.0.6",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"nuxt": "^3.15.4",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"stylelint": "^16.14.1",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-recommended-vue": "^1.6.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-prettier": "^5.0.3",
"typescript": "^5.7.3",
"vue-tsc": "^2.2.0"
}
}