forked from Maus3rSR/Hajime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.71 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "hajime",
"version": "0.1.1-prealpha",
"description": "Kendo championship and grade management software",
"author": {
"name": "Kevin UNFRICHT",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/Maus3rSR/Hajime.git",
"repository": {
"type": "git",
"url": "https://github.com/Maus3rSR/Hajime.git"
},
"build": {
"appId": "software.hajime.app",
"publish": {
"provider": "github",
"owner": "Maus3rSR",
"vPrefixedTagName": false
},
"mac": {
"category": "public.app-category.sports"
},
"win": {
"verifyUpdateCodeSignature": false,
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"target": [
{
"target": "AppImage"
}
],
"category": "Sports"
}
},
"scripts": {
"dev": "electron-webpack dev",
"env": "yarn copy .env.example .env",
"compile": "electron-webpack",
"prebuild": "yarn env && yarn compile",
"build": "yarn compile && electron-builder",
"build:fast": "yarn build --dir -c.compression=store -c.mac.identity=null",
"build:win": "yarn build -w",
"build:mac": "yarn build -m",
"build:linux": "yarn build -l",
"build:all": "yarn build -mwl",
"release": "electron-builder --publish always",
"release:win": "yarn release --windows",
"release:mac": "yarn release --mac",
"release:linux": "yarn release --linux",
"release:all": "yarn release --mac --windows --linux",
"postinstall": "electron-builder install-app-deps",
"copy": "node scripts/copy.js"
},
"devDependencies": {
"@kazupon/vue-i18n-loader": "^0.5.0",
"@tweenjs/tween.js": "^17.2.0",
"animate.css": "^3.7.0",
"axios": "^0.18.0",
"bootstrap": "^4.3.1",
"bootstrap-vue": "^2.15.0",
"electron": "8.2.5",
"electron-builder": "^22.8.1",
"electron-store": "^5.0.0",
"electron-webpack": "^2.8.2",
"electron-webpack-vue": "^2.4.0",
"faker": "^4.1.0",
"flag-icon-css": "^3.5.0",
"jspdf": "^1.5.3",
"jspdf-autotable": "^3.2.4",
"luxon": "^1.17.3",
"material-design-iconic-font": "^2.2.0",
"node-sass": "^4.13.1",
"papaparse": "^5.2.0",
"sass-loader": "^7.1.0",
"upath": "^1.0.5",
"uuid": "^3.3.2",
"v-mask": "^1.3.3",
"vee-validate": "^2.1.3",
"vue": "^2.6.10",
"vue-good-table": "^2.16.0",
"vue-i18n": "^8.18.2",
"vue-infinite-loading": "^2.4.3",
"vue-luxon": "^0.7.0",
"vue-meta": "^2.4.0",
"vue-router": "^3.3.4",
"vue-spinner": "^1.0.3",
"vue-toasted": "^1.1.25",
"vue2-datepicker": "^2.6.2",
"vue2-filters": "^0.8.0-beta.1",
"vue2-slideout-panel": "^2.4.0",
"vuedraggable": "^2.23.2",
"vuex": "^3.0.1",
"vuex-map-fields": "^1.3.1",
"webpack": "^4.26.1",
"webpack-node-externals": "^1.7.2"
},
"resolutions": {
"upath": "^1.0.5"
},
"dependencies": {
"electron-log": "^4.2.4",
"electron-updater": "^4.3.5",
"mariadb": "^2.1.1",
"mysql": "^2.17.1",
"sequelize": "^5.19.6",
"source-map-support": "^0.5.9",
"sqlite3": "^4.1.0",
"umzug": "^2.2.0"
}
}