mars-interface/package.json

108 lines
3.2 KiB
JSON
Raw Normal View History

2022-04-29 21:45:14 +00:00
{
2023-01-31 15:46:56 +00:00
"name": "mars",
"homepage": "./",
2023-03-14 09:09:51 +00:00
"version": "1.4.0",
2023-01-31 15:46:56 +00:00
"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",
2023-02-27 11:19:48 +00:00
"@marsprotocol/wallet-connector": "^1.5.2",
2023-01-31 15:46:56 +00:00
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
2023-02-03 19:30:14 +00:00
"@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",
2023-01-31 15:46:56 +00:00
"@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",
2023-02-03 19:30:14 +00:00
"bignumber.js": "^9.1.1",
"chart.js": "^4.2.0",
"classnames": "^2.3.2",
2023-01-31 15:46:56 +00:00
"create-conical-gradient": "^1.1.0",
"graphql": "^16.6.0",
2023-02-03 19:30:14 +00:00
"graphql-request": "^5.1.0",
"i18next": "^22.4.9",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
2023-01-31 15:46:56 +00:00
"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",
2023-02-03 19:30:14 +00:00
"next": "^13.1.6",
2023-01-31 15:46:56 +00:00
"numeral": "^2.0.6",
"ramda": "^0.28.0",
"react": "^18.2.0",
2023-02-03 19:30:14 +00:00
"react-chartjs-2": "^5.2.0",
2023-02-07 16:52:13 +00:00
"react-currency-input-field": "^3.6.10",
2023-01-31 15:46:56 +00:00
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
2023-02-07 16:52:13 +00:00
"react-i18next": "^12.1.5",
2023-02-03 19:30:14 +00:00
"react-spring": "^9.6.1",
2023-01-31 15:46:56 +00:00
"react-table": "^7.8.0",
2023-02-03 19:30:14 +00:00
"react-use-clipboard": "^1.0.9",
2023-02-07 16:52:13 +00:00
"sass": "^1.58.0",
2023-02-03 19:30:14 +00:00
"typescript": "^4.9.5",
"web-vitals": "^3.1.1",
"zustand": "^4.3.2"
2023-01-31 15:46:56 +00:00
},
"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",
2023-02-03 19:30:14 +00:00
"@types/jest": "^29.4.0",
2023-01-31 15:46:56 +00:00
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.throttle": "^4.1.7",
2023-02-07 16:52:13 +00:00
"@types/node": "^18.13.0",
2023-01-31 15:46:56 +00:00
"@types/numeral": "^2.0.2",
2023-02-03 19:30:14 +00:00
"@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",
2023-01-31 15:46:56 +00:00
"eslint-plugin-unused-imports": "^2.0.0",
2023-02-03 19:30:14 +00:00
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"prettier": "^2.8.3",
2023-01-31 15:46:56 +00:00
"pretty-quick": "^3.1.3",
2023-02-03 19:30:14 +00:00
"vscode-generate-index-standalone": "^1.7.1"
2023-01-31 15:46:56 +00:00
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.19.1"
}
2022-04-29 21:45:14 +00:00
}