-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.53 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
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
106
107
108
109
110
111
112
113
114
{
"name": "esv-lookup",
"productName": "ESV Lookup",
"version": "1.4.1",
"description": "ESV Lookup application for quickly looking up and copying Bible text.",
"license": "MIT",
"private": false,
"homepage": "",
"author": {
"name": "David Wosk",
"email": "[email protected]",
"url": "https://github.com/basketbaseb"
},
"engines": {
"node": ">=9.0.0",
"npm": ">=5.0.0",
"yarn": ">=1.0.0"
},
"main": "src/main.js",
"scripts": {
"todo-build-main": "cross-env NODE_ENV=production webpack --config config/webpack.config.main.prod.js",
"build-renderer": "cross-env NODE_ENV=production webpack --config config/webpack.config.renderer.prod.js --mode production --verbose",
"todo-start": "cross-env NODE_ENV=production electron ./src/main.prod.js",
"todo-start-dev": "cross-env NODE_ENV=development electron ./src/main.js",
"package-ci": "npm run build-renderer && electron-builder --publish always",
"package-mac": "npm run build-renderer && electron-builder build --mac --x64",
"package-win": "npm run build-renderer && electron-builder build --win --x64",
"start": "npm run build-renderer && electron --noDevServer ./src/main.js",
"start-dev": "cross-env NODE_ENV=development webpack-dev-server --hot --host 0.0.0.0 --config=config/webpack.config.renderer.dev.js --mode development"
},
"build": {
"productName": "ESV Lookup",
"appId": "com.basketbaseb.ESVLookup",
"afterSign": "scripts/notarize.js",
"mac": {
"hardenedRuntime": true,
"category": "Reference",
"entitlements": "resources/entitlements.mac.plist",
"entitlementsInherit": "resources/entitlements.mac.plist"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis",
"msi"
]
},
"directories": {
"buildResources": "resources",
"output": "release"
},
"publish": {
"provider": "github",
"owner": "basketbaseb",
"repo": "electron-esv-lookup",
"private": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/basketbaseb/electron-esv-lookup.git"
},
"dependencies": {
"@carbon/icons-react": "^10.4.1",
"autocompleter": "^5.0.1",
"carbon-components": "^10.10.1",
"carbon-components-react": "^7.10.1",
"electron-log": "^4.0.6",
"electron-store": "^4.0.0",
"electron-updater": "^4.2.2",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"request": "^2.88.2",
"sass-loader": "^7.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"babili-webpack-plugin": "^0.1.2",
"cross-env": "^7.0.0",
"css-loader": "^3.1.0",
"electron": "^6.0.0",
"electron-builder": "^22.3.2",
"electron-notarize": "^0.2.1",
"file-loader": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.1.2",
"postcss-pxtorem": "^4.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}