forked from balance-io/balance-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.1 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
{
"name": "balance-manager",
"description": "Ethereum Wallet Manager Interface for MetaMask, Ledger, Trezor and WalletConnect",
"version": "0.5.4",
"author": "Pedro Gomes <pedro@balance.io>",
"license": "GPL-3",
"homepage": "https://manager.balance.io",
"repository": {
"type": "git",
"url": "https://github.com/balance-io/balance-manager.git"
},
"bugs": {
"url": "https://github.com/balance-io/balance-manager/issues"
},
"dependencies": {
"@ledgerhq/hw-app-eth": "^4.7.3",
"@ledgerhq/hw-transport-u2f": "^4.7.3",
"axios": "^0.18.0",
"bignumber.js": "^7.0.1",
"ethereumjs-tx": "^1.3.4",
"i18next": "^11.3.2",
"jsonp": "^0.2.1",
"lodash": "^4.17.5",
"prop-types": "^15.6.1",
"qrcode": "^1.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-qr-reader": "^2.1.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.1.4",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"styled-components": "^3.2.3",
"walletconnect": "^0.0.1-beta.11",
"web3": "^1.0.0-beta.34"
},
"scripts": {
"remove-sourcemaps": "rm -rf build/static/js/*.map",
"start": "HTTPS=true NODE_ENV=development react-scripts start",
"build": "react-scripts build",
"build:lambda": "netlify-lambda build src/lambda",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"format": "prettier --write \"src/**/*.{js,json}\"",
"lint": "eslint src --ext .js"
},
"lint-staged": {
"src/**/*.js": [
"eslint src --ext .js",
"prettier --write",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.19.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"prettier": "^1.12.1"
}
}