forked from Whbbit1999/shadcn-vue-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.35 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "gpt_frontend",
"type": "module",
"version": "0.3.0",
"private": false,
"description": "Admin Dashboard UI crafted with Shadcn-vue, Vue3 and Vite. Built with responsiveness and accessibility in mind.",
"author": "Whbbit1999",
"license": "MIT",
"keywords": [
"vue",
"vue-router",
"vite",
"typescript",
"tailwindcss",
"shadcn-vue",
"tanstack-vue-query",
"tanstack-table",
"eslint",
"pinia",
"pnpm"
],
"scripts": {
"dev": "vite",
"dev:ldap": "vite --mode ldap",
"build": "vite build --mode production",
"build:dev": "vite build --mode development",
"build:ldap": "vite build --mode ldap",
"build:private": "vite build --mode private",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "release-it"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"@internationalized/date": "^3.7.0",
"@tanstack/vue-query": "^5.64.1",
"@tanstack/vue-table": "^8.20.5",
"@unovis/ts": "^1.5.0",
"@unovis/vue": "^1.5.0",
"@vee-validate/zod": "^4.15.0",
"@vueuse/core": "^12.4.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"lucide-vue-next": "^0.471.0",
"markdown-it-code-copy": "^0.2.1",
"nprogress": "^0.2.0",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate": "^4.2.0",
"radix-vue": "^1.9.12",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"vaul-vue": "^0.2.0",
"vee-validate": "^4.15.0",
"viewerjs": "^1.11.7",
"vue": "^3.5.13",
"vue-i18n": "^11.0.1",
"vue-monoplasty-slide-verify": "^1.3.1",
"vue-router": "^4.5.0",
"vue-sonner": "^1.3.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@faker-js/faker": "^9.4.0",
"@iconify-json/radix-icons": "^1.2.2",
"@iconify/vue": "^4.3.0",
"@microsoft/fetch-event-source": "^2.0.1",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/eslint-plugin-query": "^5.62.16",
"@tanstack/vue-query-devtools": "^5.64.1",
"@types/node": "^22.10.6",
"@types/nprogress": "^0.2.3",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@xtthaop/markdown-it-katex": "^2.0.6",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"highlight.js": "^11.11.1",
"lint-staged": "^15.3.0",
"markdown-it": "^14.1.0",
"markdown-it-external-link": "^1.1.0",
"release-it": "^18.1.1",
"release-it-pnpm": "^4.6.4",
"rollup-plugin-visualizer": "^5.14.0",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.3",
"unplugin-auto-import": "^19.0.0",
"unplugin-vue-components": "^28.0.0",
"vite": "^6.0.7",
"vite-plugin-pages": "^0.32.4",
"vite-plugin-vue-devtools": "^7.7.0",
"vite-plugin-vue-layouts": "^0.11.0",
"vue-drag-verify": "^1.0.6",
"vue-pdf-embed": "^2.1.2",
"vue-tsc": "^2.2.0",
"vue3-simple-icons": "^13.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"eslintConfig": {
"extends": []
},
"plugins": {
"release-it-pnpm": {
"inFile": "CHANGELOG.md"
}
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
}
}