-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
146 lines (146 loc) · 4.23 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "station",
"engines": {
"node": ">=14.x"
},
"version": "4.2.0",
"description": "A desktop application to interact with Terra Core.",
"author": "Terra <engineering@terra.money> (https://terra.money)",
"license": "ISC",
"dependencies": {
"@anchor-protocol/anchor.js": "^1.2.0-alpha.6",
"@ledgerhq/hw-transport-webhid": "^5.29.0",
"@ledgerhq/hw-transport-webusb": "^5.29.0",
"@terra-money/ledger-terra-js": "^1.1",
"@terra-money/log-finder": "^1.1.6",
"@terra-money/log-finder-ruleset": "^1.0.2",
"@terra-money/msg-reader": "^2.1.2",
"@terra-money/react-widget": "^1.0.6",
"@terra-money/terra.js": "^2.1.19",
"@terra-money/wallet-provider": "^2.5.0",
"@ungap/url-search-params": "^0.2",
"ace-builds": "^1.4.12",
"axios": "^0.21.1",
"bech32": "^2.0.0",
"bignumber.js": "^9.0.1",
"capital-case": "^1.0.4",
"chart.js": "^2.9.4",
"classnames": "^2.2.6",
"core-js": "^3.7.0",
"crypto-js": "^4.0.0",
"date-fns": "^2.16.1",
"deepmerge": "^4.2.2",
"electron": "^12.0.2",
"extension-port-stream": "^1.0.0",
"extensionizer": "^1.0.1",
"graphql": "^15.4.0",
"i18next": "^19.8.4",
"i18next-browser-languagedetector": "^6.0.1",
"intersection-observer": "^0.11.0",
"js-base64": "^3.6.0",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"numeral": "^2.0.6",
"post-message-stream": "^3.0.0",
"qrcode.react": "^1.0.1",
"qs": "^6.9.4",
"ramda": "^0.27.1",
"react": "^17.0.1",
"react-ace": "^9.2.0",
"react-app-polyfill": "^2.0.0",
"react-app-rewired": "^2.1.6",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^17.0.1",
"react-i18next": "^11.8.5",
"react-intersection-observer": "^8.30.3",
"react-modal": "^3.11.2",
"react-query": "^3.21.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"react-toastify": "^6.1.0",
"recoil": "^0.3.1",
"secp256k1": "4.0.2",
"semver": "^7.3.2",
"tiny-invariant": "^1.1.0",
"typescript": "^4.1.3",
"xss": "^1.0.8"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-react-jsx-development": "^7.12.5",
"@ssen/mirror-files": "^2.0.0",
"@types/bech32": "^1.1.2",
"@types/chart.js": "^2.9.28",
"@types/chrome": "^0.0.126",
"@types/classnames": "^2.2.11",
"@types/electron": "^1.6.10",
"@types/lodash": "^4.14.165",
"@types/luxon": "^1.25.0",
"@types/node": "^14.14.7",
"@types/numeral": "^0.0.29",
"@types/qrcode.react": "^1.0.1",
"@types/qs": "^6.9.5",
"@types/ramda": "^0.27.34",
"@types/react": "^17.0.0",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-dom": "^17.0.0",
"@types/react-modal": "^3.10.6",
"@types/react-router-dom": "^5.1.6",
"@types/secp256k1": "^4",
"@types/semver": "^7.3.4",
"cross-env": "^7.0.3",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2",
"regenerator-runtime": "^0.13",
"sass": "^1.32.8",
"source-map-explorer": "^2.5.0",
"webpack": "4.44.2",
"webpack-cli": "^4.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"build-extension": "webpack --config extension/webpack.config.js",
"ext": "cross-env REACT_APP_ENV=extension INLINE_RUNTIME_CHUNK=false react-app-rewired build && npm run build-extension",
"watch-extension": "node scripts/extension.watch.js"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"import/no-anonymous-default-export": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"singleQuote": true,
"semi": false
},
"lint-staged": {
"src/**/*.{ts,tsx,json,scss}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
}
}