-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2 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
{
"private": true,
"type": "module",
"scripts": {
"analyze": "nuxt analyze",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"test:unit": "vitest run --silent",
"check:prettier": "prettier --check .",
"check:eslint": "eslint .",
"check:stylelint": "stylelint **/*.{scss,vue}",
"check:ts": "vue-tsc --noEmit",
"check:all": "pnpm check:prettier && pnpm check:eslint && pnpm check:stylelint && pnpm check:ts",
"check:ci": "pnpm nuxi prepare && pnpm check:all",
"fix:prettier": "prettier --loglevel warn --write .",
"fix:eslint": "pnpm check:eslint --fix",
"fix:stylelint": "pnpm check:stylelint --fix",
"fix:svg": "svgo public --recursive --quiet",
"fix:image": "sh parse-image.sh",
"fix:all": "pnpm fix:prettier && pnpm fix:eslint && pnpm fix:stylelint && pnpm fix:svg"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "6.7.2",
"@fortawesome/pro-light-svg-icons": "6.7.2",
"@fortawesome/pro-regular-svg-icons": "6.7.2",
"@fortawesome/pro-solid-svg-icons": "6.7.2",
"@nuxt/eslint": "1.0.1",
"@nuxt/test-utils": "3.15.4",
"@nuxtjs/color-mode": "3.5.2",
"@nuxtjs/google-fonts": "3.2.0",
"@nuxtjs/i18n": "9.2.0",
"@types/node": "22",
"@vueuse/nuxt": "12.6.1",
"cypress": "14.0.3",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"happy-dom": "17.1.0",
"nuxt": "3.15.4",
"postcss-html": "1.8.0",
"prettier": "3.5.1",
"sass": "1.85.0",
"stylelint": "16.14.1",
"stylelint-config-property-sort-order-smacss": "10.0.0",
"stylelint-config-standard-scss": "14.0.0",
"svgo": "3.3.2",
"the-new-css-reset": "1.11.3",
"typescript": "5.7.3",
"vite": "6.1.0",
"vitest": "3.0.5",
"vue": "3.5.13",
"vue-tsc": "2.2.0"
},
"dependencies": {
"@nuxtjs/robots": "5.2.2",
"@pinia/nuxt": "0.10.1",
"nuxt-cloudflare-analytics": "1.0.8",
"v-wave": "3.0.2",
"vue-typical": "2.1.0"
}
}