-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "hello",
"version": "0.1.0",
"private": true,
"keywords": [
"Hello",
"Chat-web"
],
"license": "MIT",
"scripts": {
"lint": "eslint src api --ext .ts,.vue --fix",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build --mode production",
"preview": "vite preview --port 3000 --host 0.0.0.0",
"serve": "vite preview"
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"@traptitech/markdown-it-katex": "^3.6.0",
"axios": "^0.26.1",
"highlight.js": "^11.8.0",
"markdown-it": "^13.0.1",
"markdown-it-highlightjs": "^4.0.1",
"naive-ui": "2.34.4",
"pinia": "^2.0.12",
"pinia-plugin-persistedstate": "^3.1.0",
"vue": "^3.2.25",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@commitlint/cli": "16.0.0",
"@commitlint/config-conventional": "16.0.0",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-link-attributes": "^3.0.1",
"@vicons/ionicons5": "0.11.0",
"@vitejs/plugin-vue": "2.0.1",
"@vue/compiler-sfc": "3.2.26",
"eslint": "8.5.0",
"eslint-plugin-vue": "8.2.0",
"lint-staged": "12.1.4",
"markdown-it-link-attributes": "^4.0.1",
"sass": "^1.61.0",
"scss": "^0.2.4",
"typescript": "4.5.4",
"vite": "2.7.7",
"vue-tsc": "0.30.1"
}
}