forked from HathorNetwork/hathor-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.62 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
{
"name": "hathor-wallet",
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 15,
"functions": 5,
"lines": 25,
"statements": 25
}
},
"coverageReporters": [
"html",
"text"
]
},
"productName": "Hathor Wallet",
"description": "Light wallet for Hathor Network",
"author": "Hathor Foundation <contact@hathor.network> (https://hathor.network/)",
"version": "0.6.5-beta",
"private": true,
"dependencies": {
"@sentry/electron": "^0.17.0",
"axios": "^0.17.1",
"bitcore-mnemonic": "^1.7.0",
"bootstrap": "^4.0.0",
"crypto-js": "^3.1.9-1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-react": "^7.5.1",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"long": "^4.0.0",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.2",
"popper.js": "^1.12.9",
"qrcode.react": "^0.8.0",
"react": "^16.5.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.2.0",
"react-loading": "^1.0.3",
"react-paginate": "^5.0.0",
"react-redux": "^5.0.7",
"react-router-dom": "4.2.2",
"react-scripts": "2.0.3",
"redux": "^4.0.0"
},
"main": "public/electron.js",
"homepage": "./",
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=node",
"eject": "react-scripts eject",
"electron": "electron --inspect=5858 .",
"preelectron-pack": "npm run build",
"electron-pack": "build --mac --win --linux -c.extraMetadata.main=build/electron.js"
},
"devDependencies": {
"@sentry/browser": "^5.0.5",
"@sentry/cli": "^1.40.0",
"axios-mock-adapter": "^1.16.0",
"electron": "^4.0.3",
"electron-builder": "^20.38.5",
"electron-devtools-installer": "^2.2.4",
"jest-html-reporter": "^2.4.4",
"jest-localstorage-mock": "^2.4.0",
"jsdoc": "^3.5.5",
"mock-socket": "^8.0.5"
},
"build": {
"compression": "maximum",
"win": {
"icon": "build/icon.png",
"target": "nsis"
},
"mac": {
"icon": "build/icon.icns",
"target": "dmg"
},
"linux": {
"target": [
"AppImage",
"deb"
]
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}