-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.89 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
{
"name": "@bobafaucet/gate",
"version": "0.0.3",
"private": true,
"scripts": {
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"buildenv-dev": "react-env",
"buildenv-prod": "NODE_ENV=production react-env --dest build",
"get_artifacts": "./scripts/get_all_artifacts.sh",
"serve": "npm run buildenv-prod && serve -s build -l 3000 -c public/serve.json",
"start": "npm run buildenv-dev && react-scripts start",
"audit-check": "audit-ci --moderate",
"deploy:rinkeby": "GENERATE_SOURCEMAP=false REACT_APP_ENV=prod REACT_APP_CHAIN=rinkeby react-scripts build && aws s3 rm s3://faucets.boba.network --recursive && aws s3 sync build s3://faucets.boba.network && aws s3 cp s3://faucets.boba.network/index.html s3://faucets.boba.network/index.html --metadata-directive REPLACE --cache-control max-age=0 --content-type text/html"
},
"dependencies": {
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@eth-optimism/contracts": "^0.4.12",
"@eth-optimism/core-utils": "^0.7.3",
"@ethersproject/providers": "^5.0.24",
"@ethersproject/units": "^5.0.11",
"@material-ui/core": "^5.0.0-beta.2",
"@material-ui/icons": "^5.0.0-beta.1",
"@material-ui/styles": "^4.11.4",
"@metamask/legacy-web3": "^2.0.0",
"@mui/material": "^5.4.1",
"@sentry/react": "^6.0.2",
"antd": "^4.18.5",
"axios": "^0.21.1",
"base64-arraybuffer": "^0.2.0",
"bignumber.js": "^9.0.1",
"bn.js": "^5.1.3",
"bootstrap": "5.1.3",
"buffer": "^6.0.3",
"dotenv": "^16.0.0",
"eslint-config-react-app": "^7.0.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.0.5",
"ethers": "^5.0.32",
"html-react-parser": "^1.4.0",
"human-standard-token-abi": "^2.0.0",
"json5": "^2.1.2",
"lodash": "^4.17.20",
"md5": "^2.3.0",
"moment": "^2.24.0",
"numbro": "^2.1.2",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"react": "^16.12.0",
"react-bootstrap": "^2.1.2",
"react-copy-to-clipboard": "^5.0.2",
"react-datepicker": "^4.1.1",
"react-dom": "^16.12.0",
"react-gtm-module": "^2.0.8",
"react-multi-carousel": "^2.6.5",
"react-redux": "^7.1.3",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.0",
"react-select": "^5.1.0",
"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",
"uuid": "^8.3.2",
"workerize-loader": "^1.3.0"
},
"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",
"sass": "^1.32.8"
}
}