forked from mario128mex/ledger-live-common
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.93 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
{
"name": "@ledgerhq/live-common",
"version": "3.7.1",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"flow-typed": "flow-typed install -s",
"build": "rm -rf lib src/data/icons/react* && node scripts/buildReactIcons.js && babel --ignore __tests__ -sd lib src && flow-copy-source -i \"__tests__/**\" src lib",
"prepublish": "yarn build && yarn documentation",
"watch": "node scripts/buildReactIcons.js && babel -wsd lib src && flow-copy-source -wv src lib",
"documentation": "documentation build src/** --project-name '@ledgerhq/wallet-common' --project-version `node -e \"console.log(require('./package.json').version)\"` --project-homepage https://github.com/LedgerHQ/ledger-wallet-common -g -f html -o documentation-website/public/docs",
"prettier": "prettier --write 'src/**/*.js'",
"lint": "eslint src",
"flow": "flow src",
"test": "TZ=America/New_York jest src"
},
"files": [
"lib",
"src",
"flow"
],
"jest": {
"setupFiles": [
"<rootDir>/jest/globals.js"
],
"testURL": "http://localhost"
},
"dependencies": {
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"invariant": "^2.2.2",
"lodash": "^4.17.4",
"numeral": "^2.0.6",
"prando": "^3.0.1",
"react": "^16.4.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^23.0.1",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"documentation": "^7.1.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.73.0",
"flow-copy-source": "^1.2.1",
"flow-typed": "^2.2.3",
"glob": "^7.1.2",
"jest": "^23.1.0",
"prettier": "^1.13.4",
"svgr": "^1.10.0",
"timemachine": "^0.3.0"
}
}