-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.44 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
{
"name": "voting-booth",
"version": "1.0.0",
"description": "Pemilu HMIF 2019 voting booth",
"main": "main.js",
"scripts": {
"start": "electron . --auth=sample_auth.json",
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "build --dir",
"dist": "build",
"postinstall": "install-app-deps",
"customize": "node customizebuild.js && build"
},
"author": "IT Pemilu HMIF 2019",
"repository": {
"type": "git",
"url": "git+https://github.com/pemiluhmif/voting-booth.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/pemiluhmif/voting-booth/issues"
},
"build": {
"appId": "voting-booth",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage"
]
},
"win": {
"target": "squirrel",
"icon": "build/icon.ico"
}
},
"devDependencies": {
"electron": "^3.0.9",
"electron-builder": "^20.36.2"
},
"dependencies": {
"amqplib": "^0.5.2",
"axios": "^0.18.0",
"better-sqlite3": "^5.0.1",
"bulma": "^0.7.2",
"ejs": "^2.6.1",
"electron-reload": "^1.3.0",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.1",
"sync-request": "^6.0.0",
"uuid4": "^1.1.4",
"yargs": "^12.0.5"
}
}