-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.77 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
{
"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": "react-scripts build",
"test": "react-scripts test",
"prepare": "husky install",
"pre-commit": "lint-staged",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"dependencies": {
"@anchor-protocol/anchor.js": "^2.0.0",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.5",
"@terra-money/log-finder-ruleset": "^3.0.0",
"@terra-money/terra.js": "^3.0.2",
"@terra-money/wallet-provider": "^3.6.0",
"@terra.kitchen/utils": "^1.0.6",
"@tippyjs/react": "^4.2.6",
"axios": "^0.24.0",
"bignumber.js": "^9.0.2",
"classnames": "^2.3.1",
"crypto-js": "^4.1.1",
"date-fns": "^2.27.0",
"i18next": "^21.6.3",
"i18next-browser-languagedetector": "^6.1.2",
"immutability-helper": "^3.1.1",
"js-base64": "^3.7.2",
"numeral": "^2.0.6",
"prettier": "^2.5.1",
"qrcode.react": "^1.0.1",
"qs": "^6.10.2",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-hook-form": "^7.22.2",
"react-i18next": "^11.15.1",
"react-modal": "^3.14.4",
"react-query": "^3.34.5",
"react-router-dom": "^6.2.1",
"recharts": "^2.1.8",
"recoil": "^0.5.2",
"sass": "^1.45.1",
"sentence-case": "^3.0.4",
"xss": "^1.0.10"
},
"devDependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@types/classnames": "^2.3.1",
"@types/crypto-js": "^4.0.2",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.2",
"@types/numeral": "^2.0.2",
"@types/qrcode.react": "^1.0.2",
"@types/qs": "^6.9.7",
"@types/ramda": "^0.27.60",
"@types/react": "^17.0.37",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^17.0.11",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "^5.3.2",
"husky": "^7.0.4",
"lint-staged": "^12.1.3",
"react-error-overlay": "6.0.9",
"react-scripts": "4.0.3",
"source-map-explorer": "^2.5.2",
"typescript": "^4.5.4"
},
"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"
]
}
}