-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.03 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.03 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
{
"name": "serial-assistant",
"type": "module",
"version": "3.0.1",
"private": true,
"packageManager": "pnpm@10.12.3",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"analyze": "vite build --mode=analyze",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest --run",
"test:w": "vitest",
"prepare": "npx simple-git-hooks",
"cgl:bump": "npx changelogen@latest --bump",
"deploy:docker": "docker build -t serial-assistant .",
"deploy:netlify": "ntl deploy",
"deploy:vercel": "vercel --prod"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.11",
"@tanstack/vue-table": "^8.21.3",
"@vee-validate/zod": "^4.15.1",
"@vueuse/core": "^10.2.1",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"fuse.js": "^7.1.0",
"lucide-vue-next": "^0.523.0",
"nprogress": "^0.2.0",
"reka-ui": "^2.3.1",
"str2gbk": "^0.0.5",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.3.4",
"vee-validate": "^4.15.1",
"vue": "^3.3.4",
"vue-router": "^4.5.1",
"vue-sonner": "^2.0.1",
"vuedraggable": "^4.1.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@antfu/eslint-config": "^4.11.0",
"@antfu/ni": "^24.3.0",
"@types/node": "^22.15.3",
"@vitejs/plugin-vue": "^5.2.4",
"autoprefixer": "^10.4.14",
"eslint": "^9.23.0",
"eslint-plugin-format": "^1.0.1",
"jsdom": "^26.1.0",
"lint-staged": "^15.5.0",
"netlify-cli": "^22.2.2",
"postcss": "^8.4.27",
"rollup-plugin-visualizer": "^5.14.0",
"simple-git-hooks": "^2.13.0",
"terser": "^5.43.1",
"unplugin-auto-import": "^19.3.0",
"unplugin-vue-components": "^28.7.0",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-vue-devtools": "^7.7.7",
"vitest": "^3.2.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}