-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.79 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "gentl",
"description": "Administrative tool.",
"version": "0.2.8",
"license": "MIT",
"author": "Jakub Kylian",
"homepage": "https://none.cz",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder -p always",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"dist2": "yarn compile && electron-builder"
},
"build": {
"productName": "Gentl",
"win": {
"target": "nsis",
"icon": "logo_production.ico",
"publisherName": "Jakub Kylian",
"verifyUpdateCodeSignature": false
},
"linux": {
"target": "deb",
"maintainer": "Jakub Kylian"
},
"nsis": {
"installerIcon": "logo_production.ico",
"uninstallerIcon": "logo_production.ico"
},
"extraResources": [
{
"from": "./src/defaultSettings/",
"to": "defaultSettings",
"filter": [
"**/*",
"!**/databaseSettings.json"
]
}
]
},
"dependencies": {
"axios": "^0.19.0",
"bcrypt": "^3.0.4",
"blob-util": "^2.0.2",
"dataframe-js": "^1.4.1",
"devextreme": "^18.2",
"devextreme-vue": "^18.2",
"docxtemplater": "^3.9.7",
"electron-updater": "^4.0.6",
"element-ui": "^2.5.4",
"iconv-lite": "^0.4.24",
"jszip": "2.6.1",
"keytar": "^4.4.1",
"material-design-icons-iconfont": "^4.0.4",
"moment": "^2.24.0",
"msnodesqlv8": "^0.8.3",
"mssql": "^5.1.0",
"nodemailer": "^6.1.1",
"pouch-resolve-conflicts": "^1.2.0",
"pouchdb": "^7.1.1",
"pouchdb-adapter-http": "^7.1.1",
"pouchdb-find": "^7.1.1",
"pouchdb-upsert": "^2.2.0",
"set-cookie-parser": "^2.3.8",
"sl-vue-tree": "^1.8.4",
"underscore": "^1.9.1",
"username": "^4.1.0",
"vue": "^2.6.3",
"vue-draggable-resizable": "^2.0.0-rc2",
"vue-electron": "^1.0.6",
"vue-grid-layout": "2.1.3",
"vue-multiselect": "^2.1.3",
"vue-numeric": "^2.3.0",
"vue-resize": "^0.4.5",
"vue-responsive-grid-layout": "^1.1.8",
"vue-router": "^3.0.2",
"vue-shortkey": "^3.1.6",
"vue-split-panel": "^1.0.4",
"vue2-dropzone": "^3.5.2",
"vuedraggable": "^2.19.2",
"vuetify": "^1.5.2",
"vuetify-upload-button": "^1.2.2",
"vuex": "^3.1.0",
"xlsx": "^0.14.1",
"xlsx-template": "^0.5.0"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.8.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"electron": "5.0.6",
"electron-builder": "20.38.4",
"electron-is-dev": "^1.0.1",
"electron-webpack": "^2.7.4",
"node-abi": "^2.11.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.2.0",
"vue-loader": "^15.6.2",
"vue-template-compiler": "^2.6.3",
"webpack": "^4.39.2"
}
}