-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.21 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.21 KB
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
{
"name": "mars",
"homepage": "./",
"version": "1.0.0",
"private": false,
"license": "SEE LICENSE IN LICENSE FILE",
"scripts": {
"dev": "next dev",
"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.29.5",
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "^0.29.5",
"@cosmjs/stargate": "^0.29.5",
"@marsprotocol/wallet-connector": "^0.9.12",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@ramonak/react-progress-bar": "^5.0.2",
"@sentry/nextjs": "^7.12.1",
"@tanstack/react-query": "^4.3.4",
"@tanstack/react-table": "^8.5.13",
"@testing-library/dom": "^8.17.1",
"@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.0",
"chart.js": "^3.9.1",
"classnames": "^2.3.1",
"create-conical-gradient": "^1.1.0",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"i18next": "^21.9.1",
"i18next-browser-languagedetector": "^6.1.5",
"i18next-http-backend": "^1.4.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": "^12.2.5",
"numeral": "^2.0.6",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"react-currency-input-field": "^3.6.4",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.5",
"react-spring": "^9.5.5",
"react-table": "^7.8.0",
"react-use-clipboard": "^1.0.8",
"sass": "^1.56.1",
"typescript": "^4.8.2",
"web-vitals": "^3.0.1",
"zustand": "^4.1.1"
},
"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.2.3",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.throttle": "^4.1.7",
"@types/node": "^18.7.15",
"@types/numeral": "^2.0.2",
"@types/prettier": "^2.7.0",
"@types/ramda": "^0.28.15",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/react-table": "^7.7.12",
"eslint": "^8.23.0",
"eslint-config-next": "^12.2.5",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"vscode-generate-index-standalone": "^1.6.0"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.19.1"
}
}