forked from OpenBMB/XAgent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.15 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
{
"name": "xagent",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host --mode development",
"build": "vite build --mode production",
"test": "vite --host --mode test"
},
"dependencies": {
"@codemirror/lang-python": "^6.1.3",
"@codemirror/theme-one-dark": "^6.1.2",
"@element-plus/icons-vue": "^2.1.0",
"@types/crypto-js": "^4.1.1",
"codemirror": "^6.0.1",
"element-plus": "^2.2.28",
"primevue": "^3.34.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.16",
"@mui/material": "^5.14.17",
"antd": "^5.11.1",
"sass": "^1.69.5",
"sass-loader": "^13.2.0",
"save": "^2.9.0",
"uuid": "^9.0.1",
"v-viewer": "^3.0.10",
"viewer": "0.10.11",
"viewerjs": "^1.11.6",
"vue": "^3.2.45",
"vue-codemirror": "^6.1.1",
"vue-json-viewer": "^3.0.4",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@iconify/json": "^2.2.14",
"@tinymce/tinymce-vue": "^5",
"@types/markdown-it": "^12.2.3",
"@types/marked": "^4.0.8",
"@types/node": "^18.14.6",
"@types/uuid": "^9.0.3",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-react": "^4.1.1",
"@vitejs/plugin-vue": "^4.4.1",
"@vueuse/core": "^9.12.0",
"axios": "^1.3.4",
"clipboard": "^2.0.11",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"dompurify": "^3.0.1",
"eslint": "^8.33.0",
"eslint-plugin-vue": "^9.9.0",
"highlight.js": "^11.7.0",
"lint-staged": "^13.2.0",
"markdown-it": "^13.0.1",
"marked": "^4.3.0",
"nanoid": "^4.0.1",
"pinia": "^2.0.32",
"typescript": "^4.9.3",
"unplugin-auto-import": "^0.13.0",
"unplugin-icons": "^0.15.2",
"unplugin-vue-components": "^0.23.0",
"vite": "^4.0.0",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-html": "^3.2.0",
"vue-i18n": "^9.2.2",
"vue-tsc": "^1.0.11"
},
"lint-staged": {
"**/*.{js,ts,vue}": [
"npm run lint",
"git add"
]
}
}