-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 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
56
57
58
59
{
"name": "chatty",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"up": "taze major -I",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^10.1.0",
"mobx": "^6.9.0",
"mobx-vue-lite": "^0.3.1",
"nprogress": "^0.2.0",
"tim-js-sdk": "^2.27.1",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"vue3-popper": "^1.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.5",
"@iconify-json/carbon": "^1.1.16",
"@iconify-json/mdi": "^1.1.50",
"@iconify-json/ri": "^1.1.8",
"@iconify-json/svg-spinners": "^1.1.1",
"@intlify/unplugin-vue-i18n": "^0.10.0",
"@types/node": "^18.15.13",
"@types/nprogress": "^0.2.0",
"@unocss/preset-uno": "^0.51.6",
"@unocss/reset": "^0.51.6",
"@vitejs/plugin-vue": "^4.1.0",
"eslint": "^8.39.0",
"lint-staged": "^13.2.1",
"rollup-plugin-visualizer": "^5.9.2",
"simple-git-hooks": "^2.8.1",
"taze": "^0.9.1",
"typescript": "^5.0.2",
"unocss": "^0.51.6",
"unplugin-auto-import": "^0.15.3",
"unplugin-vue-components": "^0.24.1",
"unplugin-vue-macros": "^2.0.0",
"vite": "^4.3.0",
"vite-plugin-pages": "^0.29.0",
"vite-plugin-vue-layouts": "^0.8.0",
"vue-tsc": "^1.2.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --fix"
]
}
}