-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
107 lines (107 loc) · 3.58 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
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "web-wallet",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "git config --local core.hooksPath ./git-hooks",
"start": "craco start",
"build:dev": "env-cmd -f .env.development craco build",
"build:prod": "craco build",
"predeploy:dev": "rimraf ./build && yarn build:dev",
"deploy:dev": "aws s3 rm s3://wallet.dev.cosmostation.io --recursive && aws s3 sync ./build s3://wallet.dev.cosmostation.io",
"postdeploy:dev": "aws cloudfront create-invalidation --distribution-id EGDQGYHD8E4U4 --paths '/*'",
"predeploy": "rimraf ./build && yarn build:prod",
"deploy": "aws s3 rm s3://wallet.cosmostation.io --recursive && aws s3 sync ./build s3://wallet.cosmostation.io",
"postdeploy": "aws cloudfront create-invalidation --distribution-id EFX15CQ01VJFM --paths '/*'",
"test": "craco test",
"eject": "react-scripts eject",
"eslint": "eslint --max-warnings 0 ./src",
"i18next-scanner": "i18next-scanner"
},
"dependencies": {
"@cosmostation/extension-client": "^0.0.2",
"@craco/craco": "^6.3.0",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@ledgerhq/hw-transport": "^6.11.0",
"@ledgerhq/hw-transport-webhid": "^6.11.0",
"@ledgerhq/hw-transport-webusb": "^6.11.0",
"@mui/icons-material": "^5.0.3",
"@mui/material": "^5.0.3",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/big.js": "^6.1.2",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.178",
"@types/node": "^12.0.0",
"@types/qrcode.react": "^1.0.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.3.1",
"@types/ripemd160": "^2.0.0",
"@types/secp256k1": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"axios": "^0.24.0",
"bech32": "^2.0.0",
"big.js": "^6.1.1",
"bip32": "^2.0.6",
"chalk": "^4.1.2",
"clsx": "^1.1.1",
"copy-to-clipboard": "^3.3.1",
"craco-alias": "^3.0.1",
"dayjs": "^1.10.7",
"detect-browser": "^5.2.1",
"env-cmd": "^10.1.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import-name": "^1.2.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"google-protobuf": "^3.19.1",
"i18next": "^21.3.0",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-scanner": "^3.0.1",
"ledger-cosmos-js": "^2.1.8",
"lodash": "^4.17.21",
"mobile-detect": "^1.4.5",
"notistack": "^2.0.2",
"qrcode.react": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-helmet-async": "^1.1.2",
"react-i18next": "^11.12.0",
"react-responsive-carousel": "^3.2.22",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"recoil": "^0.4.1",
"rimraf": "^3.0.2",
"ripemd160": "^2.0.2",
"sass": "^1.69.5",
"secp256k1": "^4.0.2",
"sort-keys": "^5.0.0",
"swr": "^1.0.1",
"typescript": "^4.1.2",
"web-vitals": "^1.1.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}