forked from unchained-capital/caravan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.77 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
{
"name": "caravan",
"version": "0.3.3",
"description": "Unchained Capital's Bitcoin Multisig Application",
"main": "index.jsx",
"publicPrivate": true,
"repository": {
"type": "git",
"url": "https://github.com/unchained-capital/caravan"
},
"author": "Unchained Capital",
"license": "MIT",
"bugs": {
"url": "https://github.com/unchained-capital/caravan/issues"
},
"homepage": "https://unchained-capital.github.io/caravan",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.0.1",
"@commitlint/travis-cli": "^9.0.1",
"@testing-library/jest-dom": "^5.6.0",
"@testing-library/react": "^10.0.4",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"chai": "4.2.0",
"commander": "^5.0.0",
"commitlint-config-cz": "^0.13.1",
"cypress": "^4.11.0",
"cz-customizable": "^6.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-jest-dom": "^3.0.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-testing-library": "^3.1.0",
"gh-pages": "^3.1.0",
"install": "^0.13.0",
"jest-junit": "^11.0.1",
"mocha": "7.1.1",
"prettier": "^2.0.2",
"standard-version": "^8.0.2"
},
"scripts": {
"build": "npm run check && react-scripts build",
"build:ci": "npm run ci && react-scripts build",
"check": "npm run lint && npm run test:ci",
"ci": "npm run lint:code && npm run lint:commit-travis && npm run test:ci",
"commit": "./node_modules/cz-customizable/standalone.js",
"cypress:open": "$(npm bin)/cypress open",
"cypress:run": "$(npm bin)/cypress run",
"cypress:run:record": "$(npm bin)/cypress run --record",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject",
"gh-pages": "CI=true npm run build && gh-pages -d build",
"lint": "npm run lint:code && npm run lint:commit",
"lint:code": "eslint --ext .js,.jsx src/",
"lint:commit": "commitlint --from=HEAD~1",
"lint:commit-travis": "commitlint-travis",
"predeploy": "npm run build",
"release": "standard-version",
"start": "HTTPS=true react-scripts start",
"test": "react-scripts test",
"test:ci": "CI=true react-scripts test --coverage"
},
"bin": {},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@material-ui/core": "^4.9.11",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"axios": "^0.19.0",
"base58check": "^2.0.0",
"bignumber.js": "^9.0.0",
"bip32": "^2.0.4",
"bitcoin-address-validation": "^1.0.2",
"bitcoinjs-lib": "^5.1.7",
"bowser": "^2.6.1",
"classnames": "^2.2.6",
"diff": "^4.0.2",
"fs-extra": "^9.0.0",
"hi-base32": "^0.5.0",
"history": "^5.0.0",
"lodash": "^4.17.19",
"material-table": "^1.57.2",
"moment": "^2.24.0",
"node-sass": "^4.14.1",
"notistack": "^0.9.11",
"pako": "^1.0.10",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"qrcode.react": "^1.0.0",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.9",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-paginate": "^6.3.0",
"react-qr-reader": "^2.2.1",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"react-table": "6.11.5",
"react-toggle": "^4.0.2",
"redux": "^4.0.1",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"unchained-bitcoin": "0.0.15",
"unchained-wallets": "0.1.7"
}
}