-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
95 lines (95 loc) · 2.65 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
{
"name": "wechatai",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"commit": "git-cz",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"type:check": "vue-tsc --noEmit --skipLibCheck",
"lint-staged": "npx lint-staged",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"bump": "node version-bump.mjs",
"prepare": "husky install"
},
"dependencies": {
"@imengyu/vue3-context-menu": "^1.2.5",
"@tauri-apps/api": "^1.2.0",
"@traptitech/markdown-it-katex": "^3.6.0",
"@vueuse/core": "^9.13.0",
"eventsource-parser": "^1.0.0",
"handlebars": "^4.7.7",
"handlebars-helpers": "^0.10.0",
"highlight.js": "^11.7.0",
"markdown-it": "^13.0.1",
"markdown-it-fancy-lists": "^1.2.1",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-task-lists": "^2.1.1",
"pinia": "^2.0.33",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store",
"vooks": "^0.2.12",
"vue": "^3.2.45",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@arco-design/web-vue": "^2.44.7",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@tauri-apps/cli": "^1.2.2",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.7.10",
"@typescript-eslint/eslint-plugin": ">=5.43.0",
"@typescript-eslint/parser": ">=5.43.0",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.14",
"consola": "^2.15.3",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.6.0",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"markdown-it-katex": "^2.0.3",
"mockjs": "^1.1.0",
"postcss": "8.4.17",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.9.0",
"stylelint": "^14.13.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^5.0.0",
"tailwindcss": "^3.2.7",
"typescript": ">=4.4",
"unplugin-auto-import": "^0.15.2",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.0.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-style-import": "^2.0.0",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-devtools": "^0.0.15",
"vue-tsc": "^1.0.11"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"prettier --write",
"eslint --fix"
]
}
}