-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
91 lines (91 loc) · 2.83 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
{
"name": "beehivedesktop",
"version": "1.0.8",
"description": "A decentralized Smartcash wallet.",
"private": true,
"author": "SmartCash",
"build": {
"appId": "beehivedesktop",
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.finances"
},
"win": {
"icon": "./build/icon.ico",
"artifactName": "${productName}-${version}.${ext}",
"target": "nsis"
}
},
"main": "public/electron.js",
"homepage": "./",
"dependencies": {
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.5.0",
"@testing-library/user-event": "7.2.1",
"animate.css": "4.1.1",
"big.js": "5.2.2",
"bip38": "3.1.1",
"bitcore-mnemonic": "8.25.7",
"bootstrap": "5.0.0-beta3",
"cross-env": "6.0.3",
"crypto-js": "4.0.0",
"electron-debug": "3.2.0",
"electron-is-dev": "1.1.0",
"electron-store": "6.0.1",
"fast-levenshtein": "3.0.0",
"file-saver": "1.3.8",
"git": "^0.1.3",
"i": "0.3.6",
"jspdf": "1.5.3",
"lodash": "^4.17.21",
"node-sass": "^4.14.1",
"npm": "7.7.6",
"qrious": "4.0.2",
"random": "2.1.1",
"react": "16.13.1",
"react-countdown": "2.3.1",
"react-custom-scrollbars": "4.2.1",
"react-devtools": "4.10.1",
"react-dom": "16.13.1",
"react-hook-form": "5.5.3",
"react-input-mask": "2.0.4",
"react-phone-number-input": "3.0.22",
"react-router-dom": "5.1.2",
"react-scripts": "4.0.0",
"react-text-mask": "5.4.3",
"request": "2.88.0",
"request-promise": "4.2.5",
"smartcashjs-lib": "git+https://github.com/SmartCash/SmartCashjs-lib.git",
"text-mask-addons": "3.8.0"
},
"scripts": {
"start": "npm run electron-start",
"build": "npm run electron-build",
"react-start": "react-scripts start",
"react-build": "react-scripts build -- --profile",
"electron-build": "npm run react-build && electron-builder",
"electron-start": "concurrently -k --success first \"cross-env BROWSER=none npm run react-start\" \"wait-on http://localhost:3000 && electron .\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "5.1.0",
"electron": "^10.4.3",
"electron-builder": "22.8.0",
"electron-react-devtools": "0.5.3",
"wait-on": "4.0.2"
}
}