-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
120 lines (120 loc) · 3.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "wallet",
"version": "0.1.0",
"private": true,
"dependencies": {
"@cosmjs/amino": "0.32.1",
"@cosmjs/crypto": "0.32.1",
"@cosmjs/ledger-amino": "0.32.1",
"@cosmjs/proto-signing": "0.32.1",
"@cosmjs/stargate": "0.32.1",
"@cosmjs/utils": "0.32.1",
"@keplr-wallet/cosmos": "^0.12.59",
"@keplr-wallet/unit": "^0.12.48",
"@ledgerhq/hw-app-cosmos": "6.28.2",
"@ledgerhq/hw-transport": "6.28.5",
"@ledgerhq/hw-transport-webusb": "6.28.1",
"@lum-network/sdk-javascript": "^1.0.2",
"@popperjs/core": "^2.11.6",
"@qognicafinance/react-lightweight-charts": "^1.0.5",
"@rematch/core": "^2.2.0",
"@rematch/loading": "^2.1.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"axios": "^1.3.3",
"bootstrap": "^5.2.3",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"class-transformer": "^0.5.1",
"clipboard": "^2.0.11",
"cosmjs-utils": "^0.1.0",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.7",
"dompurify": "^3.0.3",
"formik": "^2.2.6",
"i18next": "^23.7.11",
"i18next-browser-languagedetector": "^7.0.1",
"lightweight-charts": "^4.0.0",
"marked": "^4",
"numeral": "^2.0.6",
"path-browserify": "^1.0.1",
"print-js": "^1.6.0",
"querystring-es3": "^0.2.1",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.2.0",
"react-i18next": "^13.5.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.1",
"react-scripts": "^5.0.1",
"react-select": "^5.4.0",
"react-toastify": "^9.1.1",
"react-transition-group": "^4.4.2",
"redux": "^4.0.5",
"reflect-metadata": "^0.1.13",
"sass": "^1.52.1",
"stream-browserify": "^3.0.0",
"typescript": "^5.3.3",
"web-vitals": "^3.1.1",
"yup": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.0",
"@keplr-wallet/types": "^0.12.5",
"@types/bootstrap": "^5.2.6",
"@types/crypto-js": "^4.2.1",
"@types/cryptojs": "^3.1.29",
"@types/dompurify": "^3.0.2",
"@types/jest": "^27.4.0",
"@types/marked": "^4",
"@types/node": "^16.10.3",
"@types/numeral": "^2.0.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.5",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.2.1",
"ts-jest": "^27"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.tsx src/**/*.ts --fix"
},
"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"
]
}
}