-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
84 lines (84 loc) · 2.33 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
{
"name": "restake",
"version": "0.1.0",
"private": true,
"dependencies": {
"@bugsnag/js": "^7.16.1",
"@bugsnag/plugin-react": "^7.16.1",
"@cosmjs/proto-signing": "^0.28.1",
"@cosmjs/stargate": "^0.28.1",
"@keplr-wallet/wc-client": "^0.11.3",
"@terra-money/terra.js": "^3.1.8",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^13.5.0",
"@tharsis/address-converter": "^0.1.8",
"@walletconnect/browser-utils": "^1.8.0",
"axios": "^1.7.2",
"axios-retry": "^3.3.1",
"bootstrap": "^5.3.3",
"buffer": "^6.0.3",
"compare-versions": "^6.1.0",
"cosmjs-types": "^0.9.0",
"dompurify": "^3.1.5",
"dotenv": "^16.4.5",
"fuzzy-search": "^3.2.1",
"lodash": "^4.17.21",
"mathjs": "^13.0.0",
"micromark": "^4.0.0",
"micromark-extension-gfm": "^3.0.0",
"moment": "^2.29.2",
"parse-duration": "^1.1.0",
"path": "^0.12.7",
"qrcode.react": "^3.1.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.2",
"react-bootstrap-icons": "^1.11.4",
"react-copy-to-clipboard": "^5.1.0",
"react-countdown": "^2.3.5",
"react-dom": "^18.3.1",
"react-github-btn": "^1.4.0",
"react-moment": "^1.1.3",
"react-router-dom": "^6.23.1",
"react-select": "^5.8.0",
"stream": "^0.0.2",
"truncate-middle": "^1.0.6",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "npx parcel src/index.html",
"prebuild": "rm -rf dist/",
"build": "npx parcel build src/index.html",
"dryrun": "NODE_OPTIONS=--openssl-legacy-provider node scripts/dryrun.mjs",
"autostake": "NODE_OPTIONS=--openssl-legacy-provider node scripts/autostake.mjs"
},
"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"
]
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.12.0",
"@parcel/transformer-webmanifest": "^2.12.0",
"crypto-browserify": "^3.12.0",
"eslint": "^9.4.0",
"events": "^3.3.0",
"parcel": "^2.12.0",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0",
"vm-browserify": "^1.1.2"
}
}