-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "mygpt",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --mode dev",
"test": "vite --mode test",
"prod": "vite --mode prod",
"build": "vue-tsc && vite build",
"build:dev": "vue-tsc --noEmit && vite build --mode dev",
"build:prod": "vue-tsc --noEmit && vite build --mode prod",
"preview": "vite preview"
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"@traptitech/markdown-it-katex": "^3.6.0",
"@vueuse/core": "^10.1.2",
"axios": "^1.4.0",
"echarts": "^5.4.3",
"element-plus": "^2.3.5",
"highlight.js": "^11.7.0",
"markdown-it": "^13.0.1",
"markdown-it-link-attributes": "^4.0.1",
"pinia": "^2.1.3",
"vue": "^3.2.47",
"vue-qr": "^4.0.9",
"vue-router": "4"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-link-attributes": "^3.0.1",
"@vitejs/plugin-vue": "^4.1.0",
"node-sass": "^9.0.0",
"sass": "^1.62.1",
"typescript": "^5.0.2",
"unplugin-auto-import": "^0.16.2",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.3.2",
"vue-tsc": "^1.4.2"
}
}