-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
85 lines (85 loc) · 2.35 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
{
"name": "web-wallet",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=12.16.1"
},
"dependencies": {
"@ledgerhq/hw-app-eth": "^5.27.2",
"@ledgerhq/hw-transport-webusb": "^5.23.0",
"@material-ui/core": "^4.8.3",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.39",
"@metamask/legacy-web3": "^2.0.0",
"@omisego/omg-js": "^4.1.2-1.0.4",
"@sentry/react": "^5.21.4",
"@walletconnect/web3-provider": "^1.3.6",
"axios": "^0.21.1",
"bignumber.js": "^9.0.0",
"bn.js": "^5.1.1",
"buffer": "^5.6.0",
"elliptic": "^6.5.3",
"eth-sig-util": "^2.5.3",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.0.5",
"human-standard-token-abi": "^2.0.0",
"json5": "^2.1.2",
"lodash": "^4.17.20",
"moment": "^2.24.0",
"node-sass": "^4.13.0",
"numbro": "^2.1.2",
"omg-json-bigint": "^1.0.0",
"react": "^16.12.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.12.0",
"react-gtm-module": "^2.0.8",
"react-redux": "^7.1.3",
"react-scripts": "^4.0.3",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^2.3.0",
"serve": "^11.3.2",
"truncate-middle": "^1.0.6",
"walletlink": "^2.0.2",
"web3": "1.3.4"
},
"scripts": {
"preinstall": "npx npm-force-resolutions",
"buildenv-dev": "react-env",
"buildenv-prod": "NODE_ENV=production react-env --dest build",
"serve": "npm run buildenv-prod && serve -s build -l 3000 -c public/serve.json",
"start": "npm run buildenv-dev && react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"lint": "eslint . --ext .js,.jsx",
"test": "react-scripts test --watchAll=false",
"test:coverage": "npm run test --coverage",
"audit-check": "audit-ci --moderate"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@beam-australia/react-env": "2.1.2",
"audit-ci": "^3.1.1"
},
"resolutions": {
"http-proxy": "^1.18.1",
"elliptic": "^6.5.3",
"object-path": "^0.11.5",
"node-forge": "^0.10.0"
}
}