-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.61 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
83
84
85
86
87
88
89
{
"name": "yunjv",
"version": "1.7.1",
"private": true,
"author": "SCITC",
"description": "YunJv",
"scripts": {
"serve": "vue-cli-service electron:serve",
"build": "vue-cli-service electron:build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"lint:strict": "vue-cli-service lint --no-fix --max-warnings=0",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"electron:icons": "electron-icon-builder --input=./src/assets/logo.png --output=build --flatten",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"preserve": "yarn run electron:icons",
"prebuild": "yarn run electron:icons"
},
"main": "background.js",
"dependencies": {
"@marsaud/smb2": "^0.16.0",
"axios": "^0.19.2",
"basic-ftp": "^4.5.4",
"chokidar": "^3.4.0",
"core-js": "^3.6.4",
"cross-blob": "^2.0.0",
"electron-oauth-helper": "^5.0.3",
"element-ui": "^2.13.1",
"form-data": "^3.0.0",
"ftp": "^0.3.10",
"md5": "^2.2.1",
"normalize.css": "^8.0.1",
"samba-client": "^3.2.0",
"seafile-js": "^0.2.147",
"smb2": "^0.2.11",
"spark-md5": "^3.0.1",
"vue": "^2.6.11",
"vue-awesome": "^4.0.2",
"vue-progressbar": "^0.7.5",
"vue-router": "^3.1.6",
"vuex": "^3.1.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@vue/cli-plugin-babel": "~4.3.0",
"@vue/cli-plugin-eslint": "~4.3.0",
"@vue/cli-plugin-router": "~4.3.0",
"@vue/cli-plugin-unit-jest": "~4.3.0",
"@vue/cli-plugin-vuex": "~4.3.0",
"@vue/cli-service": "~4.3.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.1.0",
"cz-conventional-changelog": "3.1.0",
"electron": "^5.0.0",
"electron-icon-builder": "^1.0.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.2.2",
"less": "^3.0.4",
"less-loader": "^6.0.0",
"prettier": "^1.19.1",
"vue-cli-plugin-electron-builder": "~1.4.6",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"gitHooks": {
"commit-msg": "commitlint -E GIT_PARAMS",
"pre-push": "yarn lint:strict --cache && yarn test:unit --onlyChanged"
}
}