-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "easychat-web",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --mode dev",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"format": "pnpm prettier --write ."
},
"dependencies": {
"@stomp/stompjs": "^7.0.0",
"axios": "^1.7.9",
"crypto-js": "^4.2.0",
"element-plus": "^2.9.0",
"jsencrypt": "^3.3.2",
"nprogress": "^0.2.0",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate": "^4.1.3",
"sockjs-client": "^1.6.1",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue3-emoji-picker": "^1.1.8",
"ws": "^8.18.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.10.2",
"@types/nprogress": "^0.2.3",
"@types/sockjs-client": "^1.5.4",
"@types/ws": "^8.5.13",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/tsconfig": "^0.7.0",
"npm-run-all2": "^7.0.1",
"prettier": "^3.4.2",
"sass": "^1.82.0",
"typescript": "~5.6.2",
"unplugin-auto-import": "^0.18.6",
"unplugin-vue-components": "^0.27.5",
"vite": "^6.0.0",
"vue-tsc": "^2.1.10"
}
}