This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 177
/
package.json
155 lines (155 loc) · 4.78 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "caravan",
"version": "1.0.3",
"description": "Unchained Capital's Bitcoin Multisig Application",
"main": "index.jsx",
"publicPrivate": true,
"type": "module",
"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",
"engineStrict": true,
"engines": {
"node": ">=20"
},
"overrides": {
"jspdf": "2.5.1",
"@ledgerhq/hw-transport-webusb": {
"@ledgerhq/hw-transport": "6.28.1",
"@ledgerhq/devices": "8.0.0"
}
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/travis-cli": "^9.0.1",
"@testing-library/jest-dom": "^5.6.0",
"@testing-library/react": "^10.0.4",
"@types/history": "^5.0.0",
"@types/react": "^17.0.69",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.2.7",
"@types/react-redux": "^7.1.26",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/parser": "^6.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.5.0",
"commander": "^5.0.0",
"commitlint-config-cz": "^0.13.1",
"cz-customizable": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest-dom": "^3.0.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-testing-library": "^3.1.0",
"gh-pages": "^3.1.0",
"husky": "^4.3.6",
"install": "^0.13.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-junit": "^11.0.1",
"prettier": "^2.0.2",
"standard-version": "^9.0.0",
"typescript": "^5.0.2",
"vite": "^4.2.3",
"vite-plugin-node-polyfills": "^0.7.0"
},
"scripts": {
"build": "npm run check && tsc && __GIT_SHA__=`git rev-parse --short HEAD` vite build",
"build:ci": "npm run ci && tsc && __GIT_SHA__=`git rev-parse --short HEAD` vite build",
"check": "npm run lint && npm run test:ci",
"ci": "npm run lint && npm run test:ci",
"commit": "./node_modules/cz-customizable/standalone.js",
"deploy": "gh-pages -d build",
"gh-pages": "CI=true npm run build && gh-pages -d build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
"predeploy": "npm run build",
"release": "standard-version",
"start": "HTTPS=true npm run preview",
"test": "__GIT_SHA__=`git rev-parse --short HEAD` jest",
"test:ci": "CI=true jest --coverage",
"dev": "__GIT_SHA__=`git rev-parse --short HEAD` vite",
"preview": "__GIT_SHA__=`git rev-parse --short HEAD` vite preview"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"bin": {},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@caravan/descriptors": "^0.0.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/lab": "^5.0.0-alpha.72",
"@mui/material": "^5.5.0",
"@mui/styles": "^5.5.0",
"@trezor/transport": "^1.1.15",
"@types/redux": "^3.6.0",
"@vitejs/plugin-react": "^3.1.0",
"axios": "^0.21.2",
"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",
"buffer": "^6.0.3",
"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": "^2.0.3",
"moment": "^2.24.0",
"notistack": "^3.0.0",
"pako": "^1.0.10",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"qrcode.react": "^1.0.0",
"react": "^17.0.0",
"react-bootstrap": "^1.0.0-beta.9",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^17.0.0",
"react-dropzone": "^3.10.0",
"react-paginate": "^8.1.4",
"react-qr-reader": "^3.0.0-beta-1",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-table": "7.8.0",
"react-toggle": "^4.0.2",
"redux": "^4.0.1",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"sass": "^1.56.2",
"unchained-bitcoin": "^1.2.1",
"unchained-wallets": "^1.0.4"
}
}