-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.83 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.83 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
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
{
"name": "helix",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "nuxi generate",
"checks": "concurrently yarn:prettier yarn:stylelint yarn:eslint yarn:types",
"clean": "nuxi cleanup",
"cypress": "cypress run --browser chrome",
"cypress:open": "cypress open --browser chrome",
"eslint": "eslint \"src/**/*.{ts,js,vue}\" --no-fix",
"eslint:fix": "eslint \"src/**/*.{ts,js,vue}\" --fix",
"prepare": "husky",
"prettier": "prettier --check --log-level error \"src/**/*.{ts,js,scss,css,vue,json}\"",
"prettier:fix": "prettier --write \"src/**/*.{ts,js,scss,css,vue,json}\"",
"serve": "nuxi preview -o",
"setup": "husky init && rm .husky/pre-commit && chmod ug+x .husky/*",
"start": "nuxi dev -o",
"stylelint": "npx stylelint 'src/**/*.{vue,scss}'",
"stylelint:fix": "npx stylelint 'src/**/*.{vue,scss}' --fix",
"types": "NODE_OPTIONS='--max-old-space-size=4096' nuxi typecheck"
},
"resolutions": {
"@nuxt/kit": ">=4.2.2",
"devalue": ">=5.6.2",
"glob": ">=11.0.0",
"h3": ">=1.15.5",
"js-yaml": ">=4.1.1",
"micromatch": ">=4.0.8",
"node-forge": ">=1.3.2",
"qs": ">=6.14.1",
"semver": ">=7.7.3",
"tar": ">=7.5.3",
"tough-cookie": ">=6.0.0"
},
"dependencies": {
"lodash": "4.17.23",
"nuxt-jsonld": "2.2.1",
"nuxt-swiper": "2.0.1",
"vue": "3.5.29",
"vue3-lottie": "3.3.1",
"vuetify": "4.0.1"
},
"devDependencies": {
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"@mdi/js": "7.4.47",
"@mdream/nuxt": "0.16.0",
"@nuxt/devtools": "3.2.2",
"@nuxt/eslint": "1.15.2",
"@nuxt/eslint-config": "1.15.2",
"@nuxtjs/sitemap": "7.6.0",
"@types/eslint": "9.6.1",
"@types/lodash": "4.17.24",
"@types/node": "25.3.5",
"@unhead/addons": "2.1.10",
"@vue/compiler-sfc": "3.5.29",
"concurrently": "9.2.1",
"cypress": "15.11.0",
"eslint": "10.0.3",
"eslint-plugin-unicorn": "63.0.0",
"eslint-plugin-vue": "10.8.0",
"globals": "17.4.0",
"husky": "9.1.7",
"lint-staged": "16.3.2",
"nuxt": "4.3.1",
"nuxt-link-checker": "4.3.9",
"postcss": "8.5.8",
"postcss-html": "1.8.1",
"postcss-scss": "4.0.9",
"prettier": "3.8.1",
"prettier-plugin-packagejson": "3.0.2",
"prettier-plugin-toml": "2.0.6",
"sass": "1.97.3",
"serve": "14.2.6",
"stylelint": "17.4.0",
"stylelint-config-recommended-scss": "17.0.0",
"stylelint-config-recommended-vue": "1.6.1",
"stylelint-config-standard-scss": "17.0.0",
"stylelint-prettier": "5.0.3",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vite": "8.0.0",
"vue-eslint-parser": "10.4.0",
"vue-gtag-next": "1.14.0",
"vue-tsc": "3.2.5"
},
"packageManager": "yarn@4.12.0",
"engines": {
"node": "24.14.0",
"yarn": "4.12.0"
}
}