This repository has been archived by the owner on Jul 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.65 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
{
"name": "leadpeak",
"version": "0.2.0",
"description": "Find leads using google maps and hunter.io",
"main": "public/electron.js",
"build": {
"appId": "com.mykalmachon.leadpeak",
"productName": "Lead Peak",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"homepage": "https://mykalmachon.com",
"scripts": {
"start": "react-scripts start",
"react-build": "react-scripts build",
"electron-build": "electron-builder",
"electron-pack": "build --em.main=build/electron.js",
"preelectron-pack": "npm run build",
"build": "npm run react-build && npm run electron-build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/mykalmachon/findr.git"
},
"keywords": [
"Google",
"Maps API",
"Electron"
],
"author": "Mykal Machon",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/mykalmachon/findr/issues"
},
"dependencies": {
"axios": "^0.19.0",
"bulma": "^0.7.2",
"dotenv": "^6.2.0",
"electron-is-dev": "^1.0.1",
"electron-settings": "^3.2.0",
"hunterio": "^1.0.0",
"json2csv": "^4.3.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-scripts": "^3.1.1",
"styled-components": "^3.4.5",
"tunnel-agent": "^0.6.0"
},
"devDependencies": {
"electron": "^7.2.4",
"electron-builder": "^20.44.4",
"typescript": "^3.3.4000"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}