This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.19 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
{
"name": "ck_chatclient",
"version": "1.0.0",
"description": "CK2023-2 'Introduction to Game Network' Final Exam",
"scripts": {
"update-dependencies": "npm i -g npm-check-updates@latest && npx ncu -u && npm i -D --save",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"main": "background.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hwahyang1/CK_ChatClient.git"
},
"author": "HwaHyang",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/hwahyang1/CK_ChatClient/issues"
},
"homepage": "https://hwahyang.space",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/vue-fontawesome": "^3.0.5",
"core-js": "^3.34.0",
"dayjs": "^1.11.10",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.0",
"vue": "^3.3.11",
"vue-router": "^4.2.5",
"vue-sweetalert2": "^5.0.5",
"vuex": "^4.1.0",
"webpack": "^5.89.0"
},
"devDependencies": {
"@types/electron-devtools-installer": "^2.2.5",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-plugin-typescript": "~5.0.8",
"@vue/cli-plugin-vuex": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-typescript": "^12.0.0",
"electron": "^28.0.0",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.19.2",
"prettier": "^3.1.1",
"ts-loader": "~8.2.0",
"typescript": "~5.3.3",
"vue-cli-plugin-electron-builder": "~2.1.1"
}
}