-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.1 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
{
"name": "timesheetapp",
"version": "1.0.0",
"description": "Application for recording employee time.",
"main": "main/main.js",
"scripts": {
"startApp": "electron .",
"devApp": "set NODE_ENV=development&&electron .",
"pack": "build"
},
"build": {
"appId": "com.electron.timesheetapp",
"productName": "Time Sheet",
"win": {
"target": [
{
"target": "nsis",
"arch": [
"ia32"
]
}
]
},
"directories": {
"output": "dist"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/gajet5/timeSheetApp.git"
},
"author": "Ilya Zadonskiy",
"license": "ISC",
"bugs": {
"url": "https://github.com/gajet5/timeSheetApp/issues"
},
"homepage": "https://github.com/gajet5/timeSheetApp#readme",
"devDependencies": {
"electron": "^5.0.10",
"electron-builder": "^20.44.4"
},
"dependencies": {
"excel4node": "^1.7.2",
"fs-extra": "^8.1.0",
"moment": "^2.24.0"
}
}