-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.41 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "JesusGarciaValadez",
"version": "1.2.0",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"build-css": "postcss src/css/tailwind.css -o public/css/style.css --pretty",
"build-prod": "postcss src/css/tailwind.css -o public/css/style.css --map --env=production",
"watch-css": "postcss src/css/tailwind.css -o public/css/style.css --watch --pretty"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"@headlessui/tailwindcss": "^0.2.1",
"@nuxt/content": "^2.13.2",
"@nuxt/eslint": "^0.4.0",
"@nuxt/fonts": "^0.7.1",
"@nuxt/image": "^1.7.0",
"@nuxtjs/i18n": "^8.3.3",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/robots": "^4.0.2",
"@nuxtjs/seo": "^2.0.0-rc.16",
"@nuxtjs/sitemap": "^5.3.5",
"@nuxtjs/storybook": "^8.1.5",
"@pinia/nuxt": "^0.5.2",
"@storyblok/nuxt": "^6.0.10",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@tailwindcss/ui": "^0.7.2",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.4",
"eslint": "^9.8.0",
"nuxt": "^3.12.4",
"nuxt-gtag": "^2.1.0",
"tailwind": "^4.0.0",
"vite-plugin-eslint2": "^4.4.0",
"vue": "latest"
},
"devDependencies": {
"@nuxt/devtools": "^1.3.9",
"@nuxt/test-utils": "^3.14.0",
"@nuxt/types": "^2.18.1",
"@nuxt/typescript-build": "^3.0.2",
"@nuxtjs/color-mode": "^3.4.2",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/partytown": "^1.5.0",
"@nuxtjs/tailwindcss": "^6.12.1",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^15.10.2",
"jest": "^29.7.0",
"nuxt-headlessui": "^1.2.0",
"nuxt-purgecss": "^2.0.0",
"playwright-core": "^1.45.3",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"vitest": "^2.0.5",
"vue-jest": "^3.0.7"
},
"engines": {
"node": ">=20.15.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"yarn lint:js --lint",
"git add"
]
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}