-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.37 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
{
"name": "terra-station",
"description": "A web application to interact with Terra Core.",
"hompage": "https://station.terra.money",
"author": "Terra <[email protected]> (https://terra.money)",
"repository": "github:terra-money/station",
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"build-scripts": "webpack --config scripts/webpack.config.js",
"build": "cross-env react-app-rewired build && npm run build-scripts",
"test": "react-scripts test",
"prepare": "husky install",
"pre-commit": "lint-staged",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"dependencies": {
"@anchor-protocol/anchor.js": "^5.1.1",
"@ledgerhq/hw-transport-web-ble": "^6.27.1",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.9.1",
"@terra-money/ledger-terra-js": "^1.3.0",
"@terra-money/log-finder-ruleset": "^3.0.0",
"@terra-money/msg-reader": "^3.0.1",
"@terra-money/terra.js": "^3.1.7",
"@terra-money/terra.proto": "^2.0.0",
"@terra-money/wallet-provider": "^3.11.0",
"@terra.kitchen/utils": "^1.0.7",
"@tippyjs/react": "^4.2.6",
"axios": "^0.27.2",
"bignumber.js": "^9.0.2",
"buffer": "^6.0.3",
"classnames": "^2.3.1",
"crypto-js": "^4.1.1",
"date-fns": "^2.28.0",
"i18next": "^21.8.14",
"i18next-browser-languagedetector": "^6.1.4",
"immutability-helper": "^3.1.1",
"js-base64": "^3.7.2",
"keccak256": "^1.0.6",
"numeral": "^2.0.6",
"prettier": "^2.6.2",
"qrcode.react": "^3.0.2",
"qs": "^6.11.0",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^17.0.2",
"react-hook-form": "7.22.5",
"react-i18next": "^11.18.1",
"react-modal": "^3.15.1",
"react-query": "^3.39.0",
"react-router-dom": "^6.3.0",
"recharts": "^2.1.10",
"recoil": "^0.7.2",
"sass": "^1.52.1",
"secp256k1": "^4.0.3",
"semver": "^7.3.7",
"sentence-case": "^3.0.4",
"xss": "1.0.11"
},
"devDependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@types/numeral": "^2.0.2",
"@types/qrcode.react": "^1.0.2",
"@types/qs": "^6.9.7",
"@types/ramda": "^0.28.13",
"@types/react": "^18.0.9",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^18.0.5",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "^5.3.3",
"@types/secp256k1": "^4.0.3",
"@types/semver": "^7.3.9",
"cross-env": "^7.0.3",
"extension-port-stream": "^2.0.1",
"extensionizer": "^1.0.1",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"post-message-stream": "^3.0.0",
"react-app-rewired": "^2.1.11",
"react-error-overlay": "6.0.9",
"react-scripts": "^4.0.3",
"source-map-explorer": "^2.5.2",
"typescript": "^4.6.4",
"webpack-cli": "^4.9.1"
},
"resolutions": {
"react-error-overlay": "6.0.9"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"lint-staged": {
"src/**/*.{ts,tsx,json,scss,md}": [
"prettier --no-semi --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}