-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
109 lines (109 loc) · 3.25 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
{
"name": "mars",
"homepage": "./",
"version": "1.7.6",
"private": false,
"license": "SEE LICENSE IN LICENSE FILE",
"scripts": {
"dev": "next dev -p 3001",
"build": "yarn test && next build",
"export": "next export",
"start": "next start",
"lint": "eslint ./src/ && yarn prettier-check",
"format": "yarn index && eslint ./src/ --fix && prettier --write ./src/",
"prettier-check": "prettier --ignore-path .gitignore --check ./src/",
"index": "vscode-generate-index-standalone src/",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.32.2",
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "^0.32.2",
"@cosmjs/stargate": "^0.32.2",
"@delphi-labs/shuttle-react": "^3.19.1",
"@keplr-wallet/cosmos": "^0.12.40",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@ramonak/react-progress-bar": "^5.0.3",
"@tanstack/react-query": "^4.24.4",
"@tanstack/react-table": "^8.7.9",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@tippyjs/react": "^4.2.6",
"bignumber.js": "^9.1.1",
"chart.js": "^4.2.0",
"classnames": "^2.3.2",
"create-conical-gradient": "^1.1.0",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"i18next": "^22.4.9",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.throttle": "^4.1.1",
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"next": "^13.1.6",
"numeral": "^2.0.6",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-currency-input-field": "^3.6.10",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.5",
"react-qr-code": "^2.0.12",
"react-spring": "^9.6.1",
"react-table": "^7.8.0",
"react-use-clipboard": "^1.0.9",
"sass": "^1.58.0",
"typescript": "^4.9.5",
"web-vitals": "^3.1.1",
"zustand": "^4.3.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"devDependencies": {
"@types/chart.js": "^2.9.37",
"@types/classnames": "^2.3.1",
"@types/jest": "^29.4.0",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.throttle": "^4.1.7",
"@types/node": "^18.13.0",
"@types/numeral": "^2.0.2",
"@types/prettier": "^2.7.2",
"@types/ramda": "^0.28.22",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-table": "^7.7.14",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"vscode-generate-index-standalone": "^1.7.1"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.19.1"
}
}