-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.44 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.44 KB
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
{
"name": "Hashcast",
"version": "0.0.1",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@metamask/legacy-web3": "^2.0.0",
"@omisego/omg-js": "^4.1.2-1.0.4",
"@sentry/react": "^6.0.2",
"axios": "^0.21.1",
"base64-arraybuffer": "^0.2.0",
"bignumber.js": "^9.0.1",
"bn.js": "^5.1.3",
"buffer": "^6.0.3",
"elliptic": "^6.5.3",
"eth-sig-util": "^3.0.1",
"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",
"md5": "^2.3.0",
"moment": "^2.24.0",
"node-sass": "^4.13.0",
"numbro": "^2.1.2",
"omg-json-bigint": "^1.0.0",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.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-router-dom": "^5.2.0",
"react-scripts": "^3.4.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",
"web3": "1.3.4",
"workerize-loader": "^1.3.0"
},
"scripts": {
"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",
"postinstall": "patch-package",
"deploy": "aws s3 rm s3://hashcast.omg.network --recursive && aws s3 sync build s3://hashcast.omg.network && aws s3 cp s3://hashcast.omg.network/index.html s3://hashcast.omg.network/index.html --metadata-directive REPLACE --cache-control max-age=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"
}
}