-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.52 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
{
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"coverage": "vitest run --coverage",
"cy:o": "cypress open",
"cy:r": "cypress run",
"dev": "nuxt dev",
"generate": "nuxt generate",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "nuxt prepare",
"preview": "nuxt preview",
"test": "vitest",
"test:once": "vitest run"
},
"dependencies": {
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.396.0",
"radix-vue": "^1.8.4",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.1",
"@iconify-json/carbon": "^1.1.31",
"@nuxt/content": "^2.12.1",
"@nuxt/image": "^1.7.0",
"@nuxt/test-utils": "^3.12.0",
"@nuxtjs/color-mode": "^3.4.1",
"@nuxtjs/tailwindcss": "^6.12.0",
"@vue/test-utils": "^2.4.5",
"@vueuse/core": "^10.9.0",
"@vueuse/nuxt": "^10.9.0",
"eslint": "^9.5.0",
"happy-dom": "^14.5.1",
"nuxt": "3.12.2",
"nuxt-icon": "^0.6.10",
"sass": "^1.74.1",
"shadcn-nuxt": "^0.10.4",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.3.1",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "^5.4.4",
"vitest": "^1.4.0",
"vitest-environment-nuxt": "^1.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm run test:once && pnpm run lint:fix"
}
}