2022-09-02 11:17:39 +00:00
|
|
|
{
|
|
|
|
"name": "mars-v2-frontend",
|
2023-05-02 07:55:32 +00:00
|
|
|
"version": "2.0.0",
|
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",
|
|
|
|
"install-charting-library": "dotenv -e .env.local node install_charting_library.js"
|
2022-09-02 11:17:39 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-08-28 10:28:48 +00:00
|
|
|
"@cosmjs/cosmwasm-stargate": "^0.31.1",
|
2023-09-13 10:51:51 +00:00
|
|
|
"@delphi-labs/shuttle-react": "^3.9.0",
|
2023-08-08 13:38:29 +00:00
|
|
|
"@keplr-wallet/cosmos": "^0.12.20",
|
2023-09-07 08:37:49 +00:00
|
|
|
"@sentry/nextjs": "^7.64.0",
|
2023-08-14 08:32:49 +00:00
|
|
|
"@splinetool/react-spline": "^2.2.1",
|
2023-09-18 14:59:24 +00:00
|
|
|
"@splinetool/runtime": "^0.9.452",
|
2023-09-18 15:03:33 +00:00
|
|
|
"@tanstack/react-table": "^8.10.0",
|
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-09-11 08:29:26 +00:00
|
|
|
"next": "13.4.19",
|
2023-02-24 08:47:27 +00:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-device-detect": "^2.2.3",
|
|
|
|
"react-dom": "^18.2.0",
|
2023-03-22 14:12:19 +00:00
|
|
|
"react-draggable": "^4.4.5",
|
2023-09-07 08:37:49 +00:00
|
|
|
"react-helmet-async": "^1.3.0",
|
2023-07-25 07:48:59 +00:00
|
|
|
"react-qr-code": "^2.0.11",
|
2023-09-26 12:48:37 +00:00
|
|
|
"react-router-dom": "^6.16.0",
|
2023-07-17 09:06:54 +00:00
|
|
|
"react-spring": "^9.7.2",
|
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-09-04 17:00:19 +00:00
|
|
|
"recharts": "^2.8.0",
|
2023-09-26 12:49:01 +00:00
|
|
|
"swr": "^2.2.2",
|
2023-03-08 09:44:39 +00:00
|
|
|
"tailwind-scrollbar-hide": "^1.1.7",
|
2023-08-08 13:38:29 +00:00
|
|
|
"zustand": "^4.4.1"
|
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-06-26 08:08:45 +00:00
|
|
|
"@types/debounce-promise": "^3.1.6",
|
2023-08-14 12:55:53 +00:00
|
|
|
"@types/lodash.debounce": "^4.0.7",
|
2023-08-07 10:51:52 +00:00
|
|
|
"@types/lodash.throttle": "^4.1.7",
|
2023-09-11 08:30:20 +00:00
|
|
|
"@types/node": "^20.6.0",
|
2023-09-11 08:20:10 +00:00
|
|
|
"@types/react": "18.2.21",
|
2023-07-17 09:07:49 +00:00
|
|
|
"@types/react-dom": "18.2.7",
|
2023-05-24 13:05:19 +00:00
|
|
|
"@types/react-helmet": "^6.1.6",
|
2023-08-14 14:58:59 +00:00
|
|
|
"autoprefixer": "^10.4.15",
|
2023-09-04 16:59:38 +00:00
|
|
|
"babel-jest": "^29.6.4",
|
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-08-01 14:51:59 +00:00
|
|
|
"eslint": "8.46.0",
|
2023-08-21 11:04:41 +00:00
|
|
|
"eslint-config-next": "^13.4.19",
|
2023-09-04 16:59:14 +00:00
|
|
|
"eslint-plugin-import": "^2.28.1",
|
2023-05-08 14:47:19 +00:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2023-08-07 10:53:23 +00:00
|
|
|
"jest": "^29.6.2",
|
2023-08-28 10:28:14 +00:00
|
|
|
"jest-environment-jsdom": "^29.6.4",
|
2023-09-18 14:59:56 +00:00
|
|
|
"prettier": "^3.0.3",
|
2023-09-18 15:03:25 +00:00
|
|
|
"prettier-plugin-tailwindcss": "^0.5.4",
|
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
|
|
|
}
|