-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.41 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
{
"name": "memo_cards",
"version": "1.0.0",
"description": "Learn vocabulary faster using flashcards",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build",
"postinstall": "install-app-deps",
"rebuild": "electron-rebuild -f -w sqlite3"
},
"repository": "https://github.com/malik-aliyev-94/memo_cards",
"keywords": [
"Electron",
"nodejs",
"socket.io",
"chrome",
"safari",
"extension",
"scrap"
],
"author": "Malik Aliyev",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^3.0.4",
"electron-builder": "^20.36.2",
"electron-rebuild": "^1.8.2"
},
"dependencies": {
"body-parser": "^1.18.3",
"ejs": "^2.6.1",
"express": "^4.16.4",
"jquery": "^3.3.1",
"socket.io": "^2.1.1",
"sqlite3": "^4.0.4",
"cheerio": "^1.0.0-rc.2",
"puppeteer": "^1.10.0",
"request": "^2.88.0",
"request-promise": "^4.2.2"
},
"build": {
"appId": "memocards",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "squirrel",
"icon": "build/icon.icon"
},
"extraResources": ["app.db"]
}
}