mango-ui-v2/package.json

83 lines
2.3 KiB
JSON

{
"name": "with-typescript-eslint-jest",
"author": "@erikdstock",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --check .",
"lint": "eslint . --ext ts --ext tsx --ext js --quiet",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": ""
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@blockworks-foundation/mango-client": "^0.1.10",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@headlessui/react": "^0.3.2-d950146",
"@heroicons/react": "^1.0.0",
"@project-serum/serum": "^0.13.20",
"@project-serum/sol-wallet-adapter": "^0.1.8",
"@solana/web3.js": "^0.90.5",
"antd": "^4.15.0",
"babel-plugin-import": "^1.13.3",
"bn.js": "^5.2.0",
"bs58": "^4.0.1",
"buffer-layout": "^1.2.0",
"immer": "^9.0.1",
"immutable-tuple": "^0.4.10",
"next": "latest",
"next-plugin-antd-less": "^0.3.0",
"next-themes": "^0.0.14",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.1",
"react-cool-dimensions": "^2.0.1",
"react-dom": "^17.0.1",
"react-grid-layout": "^1.2.4",
"react-portal": "^4.2.1",
"recharts": "^2.0.9",
"zustand": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@emotion/babel-plugin": "^11.2.0",
"@svgr/webpack": "^5.5.0",
"@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.14.2",
"@typescript-eslint/parser": "^4.14.2",
"autoprefixer": "^10.2.5",
"babel-jest": "^26.6.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.0.10",
"postcss": "^8.2.8",
"prettier": "^2.0.2",
"tailwindcss": "^2.0.4",
"typescript": "^4.1.3"
}
}