-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.69 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
{
"name": "alpende",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"format": "prettier --write \"**/*.{vue,md,json}\"",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"storybook": "storybook dev -p 6006 --ci",
"build-storybook": "storybook build",
"make:component": "hola make:component"
},
"dependencies": {
"@nuxtjs/tailwindcss": "^6.12.1",
"@pinia/nuxt": "^0.5.3",
"@t3-oss/env-nuxt": "^0.11.0",
"nuxt": "^3.12.4",
"pinia": "^2.2.2",
"vue": "latest",
"zod": "^3.23.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@jakezneal/hola": "^1.0.0",
"@jakezneal/prettier-config": "^0.2.0",
"@nuxt/test-utils": "^3.14.1",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/test": "^8.2.9",
"@storybook/vue3": "^8.2.9",
"@storybook/vue3-vite": "^8.2.9",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^5.1.2",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"@vue/test-utils": "^2.4.6",
"jsdom": "^24.1.1",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"storybook": "^8.2.9",
"testing-library-selector": "^0.3.1",
"vitest": "^2.0.5"
}
}