forked from ippontech/iroco2-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.67 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.67 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"start": "nuxt start",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier:check": "prettier --check .",
"prepare": "husky"
},
"engines": {
"npm": "^10",
"node": "^22"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@nuxt/devtools": "^2.6.2",
"@nuxt/eslint": "^1.5.2",
"@nuxt/fonts": "^0.11.4",
"@nuxt/test-utils": "^3.19.2",
"@nuxt/types": "^2.18.1",
"@nuxt/typescript-build": "^3.0.2",
"@nuxtjs/tailwindcss": "^6.14.0",
"@types/luxon": "^3.6.2",
"@vitest/coverage-v8": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.21",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"happy-dom": "^18.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"nuxt": "^3.17.6",
"nuxt-icon": "^0.6.10",
"playwright-core": "^1.53.2",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"shadcn-nuxt": "^2.2.0",
"sonar-scanner": "^3.1.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"unplugin-auto-import": "^19.3.0",
"vite": "^7.0.1",
"vitest": "^3.2.4"
},
"dependencies": {
"@heroicons/vue": "^2.2.0",
"@nuxt/ui": "^2.22.0",
"@pinia/nuxt": "^0.11.1",
"@tanstack/vue-table": "^8.21.3",
"@unovis/ts": "^1.4.1",
"@unovis/vue": "^1.5.2",
"@vee-validate/zod": "^4.15.1",
"@vuepic/vue-datepicker": "^11.0.2",
"@vueuse/core": "^13.5.0",
"chart.js": "^4.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel": "^8.0.2",
"embla-carousel-vue": "^8.6.0",
"katex": "^0.16.22",
"lint": "^1.1.2",
"lucide-vue-next": "^0.525.0",
"luxon": "^3.6.1",
"npm": "^11.4.2",
"ofetch": "^1.4.1",
"pinia": "^3.0.3",
"pinia-plugin-persistedstate": "^4.4.1",
"postcss-custom-properties": "^14.0.6",
"radix-vue": "^1.9.17",
"sse.js": "^2.6.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"vaul-vue": "^0.4.1",
"vee-validate": "^4.13.2",
"vue": "^3.5.13",
"vue-chartjs": "^5.3.2",
"vue-clerk": "^0.10.1",
"vue-router": "^4.5.1",
"zod": "^3.25.71"
},
"peerDependencies": {
"@unovis/ts": "^1.4.1",
"@unovis/vue": "^1.5.2"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint"
]
}
}