-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
94 lines (94 loc) · 2.94 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
{
"name": "gravity-bridge-dapp",
"version": "0.0.1",
"private": true,
"dependencies": {
"@cosmjs/launchpad": "^0.26.5",
"@cosmjs/proto-signing": "^0.26.5",
"@cosmjs/stargate": "^0.28.0",
"@cosmostation/extension-client": "^0.1.2",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@headlessui/react": "^1.4.2",
"@keplr-wallet/types": "^0.9.6",
"@ledgerhq/hw-app-eth": "^6.26.1",
"@ledgerhq/hw-transport": "^6.24.1",
"@ledgerhq/hw-transport-webhid": "^6.24.1",
"@ledgerhq/hw-transport-webusb": "^6.24.1",
"@metamask/detect-provider": "^1.2.0",
"@metamask/providers": "^8.1.1",
"@mui/material": "^5.2.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@uniswap/token-lists": "^1.0.0-beta.27",
"acorn": "^8.7.1",
"axios": "^0.24.0",
"big.js": "^6.1.1",
"classnames": "^2.3.1",
"dotenv": "^10.0.0",
"ethers": "^5.5.1",
"ledger-cosmos-js": "^2.1.8",
"lodash": "^4.17.21",
"long": "^5.2.0",
"react": "^17.0.2",
"react-blockies": "^1.4.1",
"react-dom": "^17.0.2",
"react-ga4": "^1.4.1",
"react-scripts": "^4.0.3",
"react-toastify": "^8.1.0",
"reset-css": "^5.0.1",
"rxjs": "^7.4.0",
"secp256k1": "^4.0.3",
"ts-interface-checker": "^1.0.2",
"typescript": "^4.5.4",
"web-vitals": "^1.0.1",
"web3": "^1.6.1",
"web3-utils": "^1.6.1"
},
"scripts": {
"start": "REACT_APP_GA=G-VEG6QT20YL react-scripts start",
"build": "REACT_APP_GA=G-VEG6QT20YL react-scripts build",
"test": "react-scripts test --passWithNoTests",
"eject": "react-scripts eject",
"deploy:testnet": "yarn run build && aws s3 sync --cache-control max-age=0,public ./build/ s3://gb-eth",
"deploy:prod": "REACT_APP_GA=G-VEG6QT20YL yarn run build && aws s3 sync --cache-control max-age=0,public ./build/ s3://spacestation.zone && aws cloudfront create-invalidation --distribution-id ESRVODSMBBH8C --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"
]
},
"devDependencies": {
"@types/big.js": "^6.1.2",
"@types/lodash": "^4.14.177",
"@types/react-blockies": "^1.4.1",
"@types/web3": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.8.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.27.1",
"ts-interface-builder": "^0.3.3"
}
}