-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
157 lines (157 loc) · 4.62 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "gtt-taskbar",
"productName": "gtt-taskbar",
"genericName": "GitLab menubar/taskbar application",
"description": "A crossplatform menubar/taskbar application for GitLabs time tracking feature.",
"homepage": "https://github.com/kriskbx/gitlab-time-tracker-taskbar",
"keywords": [
"GitLab",
"Timetracking"
],
"author": "Kris Siepert",
"private": true,
"license": "GPL-2.0",
"version": "0.3.10",
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"publish-docker": "docker run --rm -it -e \"GITHUB_TOKEN=$GITHUB_TOKEN\" -v $(pwd):/code kriskbx/gtt-taskbar-builder ./build.sh",
"lint": "eslint src",
"dev": "NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"production-windows": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"config": {
"forge": {
"publish_targets": {
"win32": [
"github"
],
"darwin": [
"github"
],
"linux": [
"github"
]
},
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"ignore": [
".idea",
"resources",
"out",
".tresorit",
"appveyor.yml",
"build.sh",
"Dockerfile",
"documentation.md",
"Icon",
"LICENSE",
"mix-manifest.json",
"readme.md",
"webpack.mix.js",
"yarn.lock",
"yarn-error.log"
],
"packageManager": "yarn",
"icon": "./resources/images/icon/icon.png"
},
"electronWinstallerConfig": {
"setupIcon": "./resources/images/icon/icon.ico"
},
"electronInstallerDebian": {
"depends": [
"libappindicator1"
],
"categories": [
"Utility"
],
"icon": "./resources/images/icon/icon.png"
},
"electronInstallerRedhat": {
"requires": [
"lsb",
"libappindicator"
],
"compressionLevel": 9,
"categories": [
"Utility"
]
},
"electronInstallerSnap": {
"grade": "stable",
"confinement": "strict",
"icon": "./resources/images/icon/icon.png"
},
"snapStore": {
"release": "stable"
},
"github_repository": {
"owner": "kriskbx",
"name": "gitlab-time-tracker-taskbar",
"draft": false,
"prerelease": true
},
"windowsStoreConfig": {
"packageName": "gtt-taskbar",
"packageDisplayName": "gitlab time tracker taskbar",
"packageVersion": "<%= version %>.0",
"publisher": "CN=F0C20719-E0F4-4F1A-99EB-2C25503A0622",
"devCert": "",
"deploy": false
}
}
},
"dependencies": {
"babel-preset-es2016": "^6.24.1",
"chokidar": "^2.0.0",
"electron": "2.0.8",
"electron-compile": "^6.4.2",
"electron-log": "^3.0.0-beta4",
"electron-squirrel-startup": "^1.0.0",
"gitlab-time-tracker": "^1.7.37",
"moment": "^2.20.1",
"raven": "^2.6.2",
"write-yaml": "^1.0.0"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"electron-forge": "^5.0.0",
"electron-prebuilt-compile": "1.7.11",
"eslint": "^3",
"eslint-config-airbnb": "^15",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^5",
"eslint-plugin-react": "^7",
"laravel-mix": "^2.0.0",
"milligram-stylus": "^1.3.0",
"roboto": "^0.8.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"url-parse": "^1.4.3",
"vue": "^2.5.13",
"vue-datetime-2": "^0.6.1",
"vue-js-toggle-button": "^1.2.2",
"vue-resource": "^1.3.5",
"vue-select": "^2.4.0"
}
}