ChatRoom/package.json

43 lines
1.3 KiB
JSON
Raw Normal View History

2021-04-21 10:20:29 +08:00
{
"name": "chat_client",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
2021-04-21 10:51:02 +08:00
"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"
2021-04-21 10:20:29 +08:00
},
2021-04-21 10:51:02 +08:00
"main": "background.js",
2021-04-21 10:20:29 +08:00
"dependencies": {
2021-04-22 15:55:38 +08:00
"bootstrap-vue": "^2.21.2",
2021-04-21 10:20:29 +08:00
"core-js": "^3.6.5",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.1.2"
},
"devDependencies": {
2021-04-21 10:51:02 +08:00
"@types/electron-devtools-installer": "^2.2.0",
2021-04-21 10:20:29 +08:00
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
2021-04-21 10:51:02 +08:00
"electron": "^11.0.0",
"electron-devtools-installer": "^3.1.0",
2021-04-21 10:20:29 +08:00
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.2.2",
"prettier": "^2.2.1",
"typescript": "~4.1.5",
2021-04-21 10:51:02 +08:00
"vue-cli-plugin-electron-builder": "~2.0.0-rc.6",
2021-04-21 10:20:29 +08:00
"vue-template-compiler": "^2.6.11"
}
}