-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.46 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
{
"name": "qianmian",
"version": "0.2.3",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "playwright test",
"type-check": "vue-tsc --build --force",
"prettier": "prettier --write ./src/",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"release": "release-it",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/vue3": "^6.1.15",
"@heroicons/vue": "^2.1.5",
"@vueuse/components": "^11.1.0",
"@vueuse/integrations": "^11.1.0",
"cheerio": "^1.0.0",
"element-plus": "^2.8.3",
"marked": "^14.1.3",
"postcss-import": "^16.1.0",
"posthog-js": "^1.167.0",
"primelocale": "^1.1.0",
"primevue": "^4.2.1",
"tailwindcss-primeui": "^0.3.4",
"vite-bundle-analyzer": "^0.11.0",
"vue": "^3.5.6",
"vue-router": "^4.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.47.1",
"@release-it/conventional-changelog": "^8.0.2",
"@rushstack/eslint-patch": "^1.10.4",
"@tailwindcss/forms": "^0.5.9",
"@tsconfig/node20": "^20.1.4",
"@types/bun": "latest",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.5",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"@vueuse/core": "^11.1.0",
"@vueuse/rxjs": "^11.1.0",
"autoprefixer": "^10.4.20",
"dayjs": "^1.11.13",
"eslint": "^8.57.1",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-vue": "^9.28.0",
"jsdom": "^24.1.3",
"jwt-decode": "^4.0.0",
"npm-run-all2": "^6.2.3",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"release-it": "^17.8.2",
"rxjs": "^7.8.1",
"surrealdb": "^1.0.0",
"tailwindcss": "^3.4.12",
"typescript": "~5.4.0",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.6",
"vite-plugin-vue-devtools": "^7.4.5",
"vitepress": "^1.4.1",
"vitest": "^1.6.0",
"vue-tsc": "^2.1.6"
}
}