2022-09-02 11:17:39 +00:00
|
|
|
{
|
|
|
|
"name": "mars-v2-frontend",
|
2023-11-13 12:46:03 +00:00
|
|
|
"version": "2.0.4",
|
2022-09-02 11:17:39 +00:00
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2023-05-16 10:39:52 +00:00
|
|
|
"build": "yarn validate-env && next build",
|
2022-11-29 16:45:00 +00:00
|
|
|
"dev": "next dev",
|
2023-05-08 14:47:19 +00:00
|
|
|
"test": "jest",
|
2023-06-07 14:22:13 +00:00
|
|
|
"test:cov": "jest --coverage",
|
2022-12-13 13:21:30 +00:00
|
|
|
"lint": "eslint ./src/ && yarn prettier-check",
|
2023-05-31 08:34:26 +00:00
|
|
|
"format": "eslint ./src/ ./__tests__/ --fix && prettier --write ./src/ ./__tests__/",
|
2022-12-13 13:21:30 +00:00
|
|
|
"prettier-check": "prettier --ignore-path .gitignore --check ./src/",
|
2023-05-16 10:39:52 +00:00
|
|
|
"start": "next start",
|
2023-07-13 12:38:08 +00:00
|
|
|
"validate-env": "node ./validate-env",
|
2023-10-17 07:03:15 +00:00
|
|
|
"install-charting-library": "dotenv -e .env.local node install_charting_library.js",
|
|
|
|
"prepare": "husky install"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.ts*": [
|
|
|
|
"eslint ./src/ ./__tests__/ --fix",
|
|
|
|
"prettier --write ./src/ ./__tests__/"
|
|
|
|
]
|
2022-09-02 11:17:39 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-08-28 10:28:48 +00:00
|
|
|
"@cosmjs/cosmwasm-stargate": "^0.31.1",
|
2023-11-03 13:10:19 +00:00
|
|
|
"@delphi-labs/shuttle-react": "^3.10.0",
|
2023-11-13 12:34:30 +00:00
|
|
|
"@keplr-wallet/cosmos": "^0.12.42",
|
2023-10-16 08:44:49 +00:00
|
|
|
"@sentry/nextjs": "^7.74.0",
|
2023-09-27 08:16:41 +00:00
|
|
|
"@splinetool/react-spline": "^2.2.6",
|
2023-10-16 08:43:53 +00:00
|
|
|
"@splinetool/runtime": "^0.9.482",
|
2023-10-11 10:56:13 +00:00
|
|
|
"@tanstack/react-table": "^8.10.6",
|
2022-10-20 15:39:21 +00:00
|
|
|
"@tippyjs/react": "^4.2.6",
|
2023-09-11 08:19:43 +00:00
|
|
|
"bignumber.js": "^9.1.2",
|
2022-11-29 16:45:00 +00:00
|
|
|
"classnames": "^2.3.2",
|
2023-06-26 08:08:45 +00:00
|
|
|
"debounce-promise": "^3.1.2",
|
2023-08-14 12:55:53 +00:00
|
|
|
"lodash.debounce": "^4.0.8",
|
2023-09-07 08:37:49 +00:00
|
|
|
"lodash.throttle": "^4.1.1",
|
2022-12-13 13:21:30 +00:00
|
|
|
"moment": "^2.29.4",
|
2023-10-11 10:56:13 +00:00
|
|
|
"next": "^13.5.4",
|
2023-02-24 08:47:27 +00:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-device-detect": "^2.2.3",
|
|
|
|
"react-dom": "^18.2.0",
|
2023-10-03 11:36:09 +00:00
|
|
|
"react-draggable": "^4.4.6",
|
2023-09-07 08:37:49 +00:00
|
|
|
"react-helmet-async": "^1.3.0",
|
2023-09-27 08:16:41 +00:00
|
|
|
"react-qr-code": "^2.0.12",
|
2023-10-23 10:16:35 +00:00
|
|
|
"react-router-dom": "^6.17.0",
|
2023-09-27 08:16:41 +00:00
|
|
|
"react-spring": "^9.7.3",
|
2023-06-19 07:18:57 +00:00
|
|
|
"react-toastify": "^9.1.3",
|
2022-12-08 20:14:38 +00:00
|
|
|
"react-use-clipboard": "^1.0.9",
|
2023-11-02 09:42:00 +00:00
|
|
|
"recharts": "^2.9.0",
|
2023-09-27 08:16:41 +00:00
|
|
|
"swr": "^2.2.4",
|
2023-03-08 09:44:39 +00:00
|
|
|
"tailwind-scrollbar-hide": "^1.1.7",
|
2023-10-11 10:56:13 +00:00
|
|
|
"zustand": "^4.4.3"
|
2022-09-02 11:17:39 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-08-28 10:27:53 +00:00
|
|
|
"@svgr/webpack": "^8.1.0",
|
2023-08-01 14:51:07 +00:00
|
|
|
"@testing-library/jest-dom": "^5.17.0",
|
2023-05-16 10:39:52 +00:00
|
|
|
"@testing-library/react": "^14.0.0",
|
2023-09-27 08:16:41 +00:00
|
|
|
"@types/debounce-promise": "^3.1.7",
|
2023-08-14 12:55:53 +00:00
|
|
|
"@types/lodash.debounce": "^4.0.7",
|
2023-11-02 09:42:30 +00:00
|
|
|
"@types/lodash.throttle": "^4.1.8",
|
2023-10-16 08:44:10 +00:00
|
|
|
"@types/node": "^20.8.6",
|
2023-11-02 09:42:11 +00:00
|
|
|
"@types/react": "18.2.33",
|
2023-10-11 10:56:13 +00:00
|
|
|
"@types/react-dom": "18.2.13",
|
2023-10-03 11:38:18 +00:00
|
|
|
"@types/react-helmet": "^6.1.7",
|
2023-09-27 08:16:41 +00:00
|
|
|
"autoprefixer": "^10.4.16",
|
|
|
|
"babel-jest": "^29.7.0",
|
2023-07-03 07:40:25 +00:00
|
|
|
"dotenv": "^16.3.1",
|
2023-08-28 10:29:35 +00:00
|
|
|
"dotenv-cli": "^7.3.0",
|
2023-10-11 10:56:13 +00:00
|
|
|
"eslint": "^8.51.0",
|
2023-11-02 09:41:40 +00:00
|
|
|
"eslint-config-next": "^14.0.0",
|
2023-09-04 16:59:14 +00:00
|
|
|
"eslint-plugin-import": "^2.28.1",
|
2023-10-17 07:03:15 +00:00
|
|
|
"husky": "^8.0.3",
|
2023-05-08 14:47:19 +00:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2023-09-27 08:16:41 +00:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2023-10-17 07:03:15 +00:00
|
|
|
"lint-staged": "^15.0.1",
|
2023-09-18 14:59:56 +00:00
|
|
|
"prettier": "^3.0.3",
|
2023-10-23 10:16:08 +00:00
|
|
|
"prettier-plugin-tailwindcss": "^0.5.6",
|
2023-07-13 12:38:08 +00:00
|
|
|
"shelljs": "^0.8.5",
|
2023-07-17 09:07:24 +00:00
|
|
|
"tailwindcss": "^3.3.3",
|
2023-09-04 16:59:57 +00:00
|
|
|
"typescript": "5.2.2"
|
2022-09-02 11:17:39 +00:00
|
|
|
}
|
2023-09-13 10:51:51 +00:00
|
|
|
}
|