forked from LedgerHQ/ledger-live-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.08 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
{
"name": "@ledgerhq/live-common",
"description": "Common ground for the Ledger Live apps",
"repository": {
"type": "git",
"url": "git://github.com/LedgerHQ/ledger-live-common"
},
"version": "9.0.0-alpha.17",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"flow-typed": "flow-typed install -s",
"build": "rm -rf lib src/data/icons/react* && node scripts/buildPartnersReactLogos.js && bash ./scripts/sync-families-dispatch.sh && node scripts/buildReactIcons.js && babel --ignore __tests__ -sd lib src && flow-copy-source -i \"__tests__/**\" src lib",
"prepublish": "yarn build",
"watch": "node scripts/buildReactIcons.js && babel -wsd lib src && flow-copy-source -wv src lib",
"prettier": "prettier --write 'src/**/*.js'",
"lint": "eslint src",
"flow": "flow src",
"test": "cross-env TZ=America/New_York jest src",
"ci-lint": "yarn lint && yarn flow && prettier --check src/**/*.js",
"ci-test-common": "yarn test --runInBand",
"ci-test-tool": "yalc publish && cd tool && yalc add @ledgerhq/live-common && yarn && yarn build && yarn link && yarn test"
},
"files": [
"lib",
"src",
"flow",
"react.js",
"reactNative.js",
".flowconfig"
],
"jest": {
"setupFiles": [
"<rootDir>/jest/globals.js"
],
"testURL": "http://localhost",
"testPathIgnorePatterns": [
".yalc",
"tool/"
]
},
"peerDependencies": {
"react": "*"
},
"dependencies": {
"@ledgerhq/compressjs": "1.3.2",
"@ledgerhq/devices": "4",
"@ledgerhq/errors": "4",
"@ledgerhq/hw-app-btc": "4",
"@ledgerhq/hw-app-eth": "4",
"@ledgerhq/hw-app-xrp": "4",
"@ledgerhq/hw-transport": "4",
"@ledgerhq/hw-transport-mocker": "4",
"@ledgerhq/logs": "4",
"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",
"lodash": "^4.17.15",
"lru-cache": "5.1.1",
"numeral": "^2.0.6",
"prando": "^5.1.1",
"react": "16.11.0",
"react-redux": "5",
"redux": "^4.0.4",
"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.3",
"rxjs-compat": "^6.5.3",
"sha.js": "^2.4.11"
},
"devDependencies": {
"axios": "^0.19.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-jest": "23",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^6.0.3",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"flow-bin": "^0.110.1",
"flow-copy-source": "^2.0.8",
"flow-typed": "^2.6.2",
"glob": "^7.1.5",
"jest": "23",
"prettier": "^1.18.2",
"svgr": "^1.10.0",
"timemachine": "^0.3.0"
}
}