-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.63 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
{
"type": "module",
"author": "Gerald Buttinger <[email protected]>",
"license": "MIT",
"scripts": {
"build": "nuxi build",
"dev": "nuxi dev",
"generate": "nuxi generate",
"preview": "nuxi preview",
"upgrade": "nuxt upgrade --force && npx npm-check-updates -i -u --install never && pnpm install",
"lint:prettier": "prettier --ignore-path ./.prettierignore --check .",
"lintfix:prettier": "prettier --ignore-path ./.prettierignore --write --list-different .",
"lint:js": "eslint .",
"lintfix:js": "eslint . --fix",
"lint": "pnpm lint:js && pnpm lint:prettier",
"lintfix": "pnpm lintfix:js && pnpm lintfix:prettier",
"postinstall": "nuxi prepare && husky"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@fontsource/amaranth": "^5.1.0",
"@fontsource/roboto": "^5.1.0",
"@mdi/font": "^7.4.47",
"@nuxt/eslint": "^0.7.2",
"@nuxthub/core": "0.8.7",
"@nuxtjs/i18n": "^9.1.1",
"@nuxtjs/sitemap": "^7.0.0",
"@nuxtjs/tailwindcss": "^6.12.2",
"@types/node": "^22",
"@vee-validate/i18n": "^4.14.7",
"@vee-validate/nuxt": "^4.14.7",
"@vee-validate/rules": "^4.14.7",
"@vueuse/nuxt": "^12.0.0",
"eslint": "^9.16.0",
"eslint-plugin-format": "^0.1.3",
"eslint-plugin-tailwindcss": "^3.17.5",
"humanize-duration": "^3.32.1",
"husky": "^9.1.7",
"i18n-iso-countries": "^7.13.0",
"nuxt": "^3.14.1592",
"nuxt-booster": "^3.1.6",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"postcss-import": "^16.1.0",
"prettier": "^3.4.2",
"pretty": "^2.0.0",
"turndown": "^7.2.0",
"typescript": "^5.7.2",
"vee-validate": "^4.14.7",
"vuetify": "^3.7.5",
"vuetify-nuxt-module": "^0.18.3"
}
}