-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.15 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
{
"name": "contract-verification-tool",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@firmachain/firma-js": "^0.2.50",
"@mui/base": "^5.0.0-alpha.63",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.2.7",
"@mui/styled-engine-sc": "^5.1.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.6.5",
"copy-to-clipboard": "^3.3.1",
"moment": "^2.29.1",
"notistack": "^2.0.5",
"react": "^17.0.2",
"react-app-env": "^1.2.3",
"react-device-detect": "^2.1.2",
"react-dom": "^17.0.2",
"react-google-recaptcha": "^2.1.0",
"react-redux": "^7.2.6",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"react-scripts": "^4.0.3",
"react-transition-group": "^4.4.2",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1",
"styled-components": "^5.3.3",
"web-vitals": "^2.1.2"
},
"scripts": {
"dev": "react-app-env --env-file=configs/.env.local start",
"testnet": "GENERATE_SOURCEMAP=false react-app-env --env-file=configs/.env.testnet build",
"mainnet": "GENERATE_SOURCEMAP=false react-app-env --env-file=configs/.env.mainnet build",
"deploy-testnet": "aws s3 sync ./build s3://deploy-ecosystem/testnet/verify-tool --profile=firmachain-deploy --delete",
"invalidate-testnet": "aws cloudfront create-invalidation --profile=firmachain-deploy --distribution-id E2UUAL0XYSVCXP --paths '/*'",
"deploy-mainnet": "aws s3 sync ./build s3://deploy-ecosystem/mainnet/verify-tool --profile=firmachain-deploy --delete",
"invalidate-mainnet": "aws cloudfront create-invalidation --profile=firmachain-deploy --distribution-id E12CRKX8WKDZ2A --paths '/*'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}