forked from LedgerHQ/ledger-live-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
138 lines (138 loc) · 3.96 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@ledgerhq/live-common",
"description": "Common ground for the Ledger Live apps",
"repository": {
"type": "git",
"url": "git://github.com/LedgerHQ/ledger-live-common"
},
"version": "12.6.2",
"main": "lib/index.js",
"license": "Apache-2.0",
"scripts": {
"flow-typed": "flow-typed install -s",
"build": "./scripts/build.sh",
"prepublish": "yarn build",
"watch": "node scripts/buildReactIcons.js && BABEL_ENV=cjs babel -wsd lib src & flow-copy-source -wv src lib",
"prettier": "prettier --write 'src/**/*.js'",
"lint": "eslint src",
"flow": "flow src",
"jest": "rimraf libcoredb && mkdir libcoredb && cross-env TZ=America/New_York jest",
"test": "yarn jest",
"ci-lint": "yarn lint && yarn flow",
"ci-test-common": "yarn test --ci",
"ci-setup-cli": "yalc publish && cd cli && yalc add @ledgerhq/live-common && yarn && yarn build && yarn link",
"ci-test-cli": "cd cli && yarn test"
},
"files": [
"lib",
"src",
"flow",
"react.js",
"reactNative.js",
".flowconfig"
],
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"src/__tests__"
],
"modulePathIgnorePatterns": [
"<rootDir>/benchmark/.*",
"<rootDir>/cli/.yalc/.*"
],
"testPathIgnorePatterns": [
"benchmark/",
"tools/",
"mobile-test-app/",
"lib/",
".yalc",
"cli/",
"test-helpers/"
],
"moduleDirectories": [
"node_modules",
"cli/node_modules"
]
},
"peerDependencies": {
"react": "16",
"react-dom": "16",
"react-redux": "7"
},
"dependencies": {
"@ledgerhq/compressjs": "1.3.2",
"@ledgerhq/devices": "5.11.0",
"@ledgerhq/errors": "5.11.0",
"@ledgerhq/hw-app-btc": "^5.11.4",
"@ledgerhq/hw-app-eth": "5.11.0",
"@ledgerhq/hw-app-trx": "5.11.1",
"@ledgerhq/hw-app-xrp": "5.11.0",
"@ledgerhq/hw-transport": "5.11.0",
"@ledgerhq/hw-transport-mocker": "^5.11.0",
"@ledgerhq/logs": "5.11.0",
"async": "^3.2.0",
"axios": "0.19.0",
"bignumber.js": "^9.0.0",
"bip32-path": "^0.4.2",
"blake2b": "^2.1.3",
"bs58check": "^2.1.2",
"crypto-js": "^3.1.9-1",
"eip55": "^1.0.3",
"ethereumjs-tx": "^1.3.7",
"invariant": "^2.2.2",
"isomorphic-ws": "^4.0.1",
"lodash": "^4.17.15",
"lru-cache": "5.1.1",
"numeral": "^2.0.6",
"prando": "^5.1.2",
"redux": "^4.0.5",
"reselect": "^4.0.0",
"ripple-binary-codec": "^0.2.0",
"ripple-bs58check": "^2.0.2",
"ripple-hashes": "^0.3.1",
"ripple-lib": "1.1.2",
"rxjs": "^6.5.4",
"rxjs-compat": "^6.5.4",
"semver": "^7.1.3",
"sha.js": "^2.4.11"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-flow": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@testing-library/react-hooks": "^3.2.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"flow-bin": "^0.120.1",
"flow-copy-source": "^2.0.9",
"flow-typed": "^2.6.2",
"glob": "^7.1.5",
"jest": "^25.1.0",
"prettier": "^1.18.2",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-redux": "7.2.0",
"react-test-renderer": "^16.13.0",
"rimraf": "^3.0.2",
"svgr": "^1.10.0",
"timemachine": "^0.3.1"
}
}