-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.85 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.85 KB
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
{
"build": {
"appId": "de.timetracker.app",
"productName": "TimeTracker",
"copyright": "Copyright © 2021 Marc Lammers",
"extraResources": [
"icons/logonotification.png"
],
"protocols": [
{
"name": "timetracker",
"role": "Viewer",
"schemes": [
"tt",
"timetracker"
]
}
],
"win": {
"publish": [
"github"
]
}
},
"productName": "TimeTracker",
"name": "timetracker",
"version": "2.6.2",
"description": "Simple time tracking tool.",
"main": "main.js",
"scripts": {
"sass": "sass SCSS/combined.scss Styles/main.css && sass SCSS/selectize.scss Styles/selectize.css",
"start": "npm run sass && electron --trace-warnings --inspect=5858 .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "build",
"deploy": "electron-builder build --win --publish always",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "https://github.com/marc2016/TimeTracker2020.git"
},
"keywords": [
"TimeTracker"
],
"author": "Marc Lammers",
"license": "MIT",
"devDependencies": {
"electron": "^23.1.2",
"electron-builder": "^22.14.5",
"patch-package": "^8.0.0"
},
"dependencies": {
"@electron/remote": "^2.0.1",
"@fontsource/open-sans": "^4.5.2",
"@fortawesome/fontawesome-free": "^5.15.4",
"@selectize/selectize": "^0.15.2",
"@trodi/electron-splashscreen": "^1.0.2",
"air-datepicker": "^3.3.0",
"bootstrap": "^4.6.1",
"bootstrap-colorpicker": "^3.4.0",
"bootstrap-datepicker": "^1.9.0",
"build-url": "^1.2.0",
"chart.js": "^2.9.4",
"chartjs-plugin-annotation": "^0.5.7",
"datatables.net-bs": "^1.11.3",
"datatables.net-bs4": "^1.11.3",
"datatables.net-dt": "^1.11.3",
"date-holidays": "^3.12.2",
"duration-pattern": "^1.0.1",
"easy-autocomplete": "^1.3.5",
"electron-localshortcut": "^3.1.0",
"electron-log": "^2.2.17",
"electron-store": "^8.0.1",
"electron-updater": "^4.6.1",
"font-awesome": "^4.7.0",
"font-awesome-animation": "^0.2.1",
"gravatar": "^1.8.2",
"jquery": "^3.6.0",
"jquery-ui": "^1.13.0",
"knockout": "^3.5.1",
"knockout-mapping": "^2.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-business-days": "^1.2.0",
"moment-duration-format": "^2.3.2",
"moment-range": "^4.0.1",
"nedb-promises": "^5.0.2",
"node-notifier": "^5.4.5",
"node-rest-client": "^3.1.0",
"npm": "8.1.4",
"popper.js": "^1.16.1",
"register-protocol-win32": "^1.1.0",
"rxjs": "^6.6.7",
"sass": "^1.55.0",
"sifter": "^0.5.4",
"string-template": "^1.0.0",
"table-builder": "^2.1.1",
"timer-machine": "^1.1.0",
"tippy.js": "^6.3.7",
"toastr": "^2.1.4",
"typeface-roboto": "^0.0.54",
"uuid": "^3.4.0"
}
}