-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.69 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
{
"name": "desktop-dictionary",
"version": "0.1.0",
"private": true,
"author": {
"name": "Debotos Das",
"email": "debotosdas@gmail.com"
},
"dependencies": {
"bluebird": "^3.5.1",
"knex": "^0.14.6",
"lodash": "^4.17.10",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "1.0.17",
"sqlite3": "^4.0.0"
},
"devDependencies": {
"electron": "1.8.4",
"electron-builder": "20.15.1",
"electron-rebuild": "^1.7.3",
"foreman": "^2.0.0"
},
"scripts": {
"dev": "nf start",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"rebuild": "electron-rebuild -f -w sqlite3",
"ebuild": "yarn build && node_modules/.bin/build -wl",
"dist": "node_modules/.bin/build -wl",
"postinstall": "electron-builder install-app-deps"
},
"description": "Dictionary Software for Desktop",
"homepage": "./",
"main": "electron/main.js",
"build": {
"productName": "Desktop Dictionary",
"appId": "com.dictionary.debotos.das",
"electronVersion": "1.8.4",
"extends": null,
"extraResources": ["./electron/database.db"],
"buildDependenciesFromSource": true,
"files": [
"build/**/*",
"electron/**/*"
],
"win": {
"target": [{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}],
"icon": "build/icon.ico"
},
"linux": {
"target": [
"deb",
"AppImage"
],
"category": "Development"
},
"directories": {
"buildResources": "resources",
"output": "release"
}
}
}