forked from likaia/chat-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.2 KB
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
{
"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": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"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",
"compression-webpack-plugin": "^5.0.1",
"core-js": "^3.6.5",
"html2canvas": "^1.0.0-rc.7",
"vue": "^3.0.0-0",
"vue-class-component": "^8.0.0-0",
"vue-native-websocket-vue3": "^3.1.0",
"vue-right-click-menu-next": "^1.1.0",
"vue-router": "^4.0.0-0",
"vue-solar-lunar": "^1.0.3",
"vue-web-screen-shot": "^1.1.6",
"vuex": "^4.0.0-0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0-0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0-0",
"husky": "^4.3.0",
"prettier": "^1.19.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"typescript": "~3.9.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}