mango-ui-v3/package.json

93 lines
2.7 KiB
JSON
Raw Normal View History

2021-03-26 09:44:55 -07:00
{
"name": "with-typescript-eslint-jest",
"author": "@erikdstock",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
2021-12-30 19:49:10 -08:00
"devnet": "NEXT_PUBLIC_CLUSTER=devnet NEXT_PUBLIC_ENDPOINT=https://mango.devnet.rpcpool.com/ NEXT_PUBLIC_GROUP=devnet.2 next dev",
2021-03-26 09:44:55 -07:00
"build": "next build",
"start": "next start",
2022-01-13 11:14:31 -08:00
"prepare": "husky install",
2021-03-26 09:44:55 -07:00
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
2021-04-14 11:40:28 -07:00
"lint": "eslint . --ext ts --ext tsx --ext js --quiet",
2021-03-26 09:44:55 -07:00
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
2022-02-26 00:31:51 -08:00
"@blockworks-foundation/mango-client": "^3.3.17",
"@headlessui/react": "^1.2.0",
2021-04-02 11:26:21 -07:00
"@heroicons/react": "^1.0.0",
2022-02-26 01:59:24 -08:00
"@jup-ag/react-hook": "^1.0.0-beta.16",
2021-08-29 21:56:27 -07:00
"@project-serum/serum": "0.13.55",
2021-06-17 17:43:53 -07:00
"@project-serum/sol-wallet-adapter": "0.2.0",
2021-12-09 09:23:19 -08:00
"@solana/web3.js": "^1.31.0",
"@solflare-wallet/pfp": "^0.0.6",
2022-02-03 06:30:44 -08:00
"@solflare-wallet/sdk": "^1.0.10",
2021-04-16 11:16:31 -07:00
"@tippyjs/react": "^4.2.5",
"big.js": "^6.1.1",
2021-06-18 11:07:07 -07:00
"bn.js": "^5.2.0",
2021-04-09 17:01:00 -07:00
"bs58": "^4.0.1",
"buffer-layout": "^1.2.0",
"dayjs": "^1.10.4",
2021-12-02 16:37:20 -08:00
"export-to-csv": "^0.2.1",
2021-04-02 11:26:21 -07:00
"immer": "^9.0.1",
2021-10-29 05:05:55 -07:00
"intro.js": "^4.2.2",
"intro.js-react": "^0.5.0",
2021-11-30 18:46:23 -08:00
"lodash": "^4.17.21",
2022-02-22 13:45:25 -08:00
"next": "^12.1.0",
"next-i18next": "^8.9.0",
"next-themes": "^0.1.1",
2022-01-09 20:42:26 -08:00
"postcss-preset-env": "^7.2.0",
"rc-slider": "^9.7.5",
2021-08-29 17:37:31 -07:00
"react": "^17.0.2",
2021-04-07 16:06:02 -07:00
"react-cool-dimensions": "^2.0.1",
2021-08-29 17:37:31 -07:00
"react-dom": "^17.0.2",
"react-grid-layout": "^1.3.3",
2021-04-09 07:27:49 -07:00
"react-portal": "^4.2.1",
"react-super-responsive-table": "^5.2.0",
"react-swipeable-views": "^0.14.0",
2021-12-09 09:23:19 -08:00
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.6",
2021-04-07 16:06:02 -07:00
"recharts": "^2.0.9",
"zustand": "^3.3.3"
2021-03-26 09:44:55 -07:00
},
"devDependencies": {
"@netlify/plugin-nextjs": "^4.1.0",
2022-01-09 20:54:57 -08:00
"@svgr/webpack": "^6.1.2",
2021-03-26 09:44:55 -07:00
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
2021-12-09 09:23:19 -08:00
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.3.0",
2022-01-09 20:31:59 -08:00
"husky": "^7.0.4",
2021-03-26 09:44:55 -07:00
"identity-obj-proxy": "^3.0.0",
2022-01-09 20:31:59 -08:00
"jest": "^27.4.7",
2021-03-26 09:44:55 -07:00
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.0.10",
"postcss": "^8.2.8",
2021-03-26 09:44:55 -07:00
"prettier": "^2.0.2",
"react-is": "^17.0.2",
"tailwindcss": "^2.2.17",
"twin.macro": "^2.4.1",
"typescript": "^4.1.3"
},
"resolutions": {
"bn.js": "5.1.3",
2021-12-22 16:39:57 -08:00
"@solana/buffer-layout": "3.0.0",
2021-12-09 09:23:19 -08:00
"@types/bn.js": "5.1.0"
2021-03-26 09:44:55 -07:00
}
}