-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
126 lines (126 loc) · 3.98 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
121
122
123
124
125
126
{
"name": "terra-station",
"description": "A web application to interact with Terra Core.",
"hompage": "https://station.money",
"author": "Terra <[email protected]> (https://terra.money)",
"repository": "github:terra-money/station",
"license": "MIT",
"scripts": {
"start": "npm run fix-extension-polyfills && react-scripts start",
"build-scripts": "webpack --config scripts/webpack.config.js",
"build": "npm run fix-extension-polyfills && cross-env react-app-rewired build && npm run build-scripts",
"test": "react-scripts test",
"prepare": "cd .. && husky install station-extension/.husky",
"pre-commit": "lint-staged",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"fix-extension-polyfills": "sed -i '' 's/!globalThis\\.chrome\\?\\.runtime\\?\\.id/false/g' \"node_modules/webextension-polyfill/dist/browser-polyfill.js\""
},
"dependencies": {
"@0xsquid/sdk": "^1.14.11",
"@amplitude/analytics-browser": "^2.1.2",
"@ledgerhq/hw-transport-web-ble": "^6.27.1",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.9.1",
"@sentry/react": "^7.53.1",
"@terra-money/feather.js": "^3.0.0-beta.3",
"@terra-money/ledger-station-js": "^1.3.10",
"@terra-money/log-finder-ruleset": "^3.0.3",
"@terra-money/msg-reader": "^3.0.1",
"@terra-money/station-connector": "^1.1.1",
"@terra-money/station-ui": "^1.0.13",
"@terra-money/terra-utils": "^1.2.0-beta.8",
"@terra-money/terra.js": "^3.1.9",
"@terra-money/terra.proto": "^2.0.0",
"@tippyjs/react": "^4.2.6",
"axios": "^0.27.2",
"bech32": "^2.0.0",
"bignumber.js": "^9.0.2",
"classnames": "^2.3.2",
"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",
"moment": "^2.29.4",
"numeral": "^2.0.6",
"qrcode.react": "^3.1.0",
"qs": "^6.11.0",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-i18next": "^11.18.1",
"react-modal": "^3.15.1",
"react-query": "^3.39.3",
"react-router-dom": "^6.15.0",
"recharts": "^2.8.0",
"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": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@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",
"@types/webextension-polyfill": "^0.10.1",
"copy-webpack-plugin": "^4.5.4",
"cross-env": "^7.0.3",
"extension-port-stream": "^2.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",
"ts-loader": "^8.4.0",
"typescript": "^4.6.4",
"webextension-polyfill": "^0.10.0",
"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"
]
}
}