-
Notifications
You must be signed in to change notification settings - Fork 167
/
package.json
82 lines (82 loc) · 2.13 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
{
"name": "chat-system",
"version": "1.1.0",
"description": "本项目是一个在线聊天系统,最大程度的还原了Mac客户端QQ。",
"private": false,
"publisher": "magicalprogrammer@qq.com",
"repository": {
"type": "git",
"url": "git+https://github.com/likaia/chat-system.git"
},
"keywords": [
"vuejs",
"socket",
"vue",
"websocket",
"chat"
],
"author": "likaia",
"license": "MIT",
"bugs": {
"url": "https://github.com/likaia/chat-system/issues"
},
"homepage": "https://github.com/likaia/chat-system#readme",
"scripts": {
"serve": "vite --open",
"build": "vite build",
"preview": "vite preview",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git-cz"
},
"dependencies": {
"@types/lodash": "^4.14.161",
"axios": "^0.21.1",
"better-scroll": "^2.0.5",
"core-js": "^3.6.5",
"vue-native-websocket-vue3": "^3.1.0",
"vue-right-click-menu-next": "^1.1.0",
"vue-solar-lunar": "^1.0.3",
"vue-web-screen-shot": "^1.5.2",
"vue": "^3.2.47",
"vue-router": "^4.1.3",
"vuex": "^4.0.2",
"@vueuse/components": "^8.9.2",
"@vueuse/core": "^8.9.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vitejs/plugin-vue": "^3.0.0",
"@vue/compiler-sfc": "^3.0.0-0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^9.0.0",
"husky": "^4.3.0",
"prettier": "^1.19.1",
"sass": "^1.26.5",
"typescript": "~4.7.4",
"vite": "^3.0.0",
"vue-tsc": "^0.38.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"volta": {
"node": "14.18.0",
"yarn": "1.22.17"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.0.0",
"node": ">= 14.18.0"
}
}