mango-ui-v2/package.json

81 lines
2.2 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",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --check .",
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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
2021-04-10 08:52:31 -07:00
"pre-push": ""
2021-03-26 09:44:55 -07:00
}
},
"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",
2021-04-02 11:26:21 -07:00
"@heroicons/react": "^1.0.0",
2021-04-14 15:46:36 -07:00
"@project-serum/serum": "^0.13.20",
"@project-serum/sol-wallet-adapter": "^0.1.8",
2021-04-14 15:46:36 -07:00
"@solana/web3.js": "^0.90.5",
2021-04-02 11:26:21 -07:00
"babel-plugin-import": "^1.13.3",
"bn.js": "^5.2.0",
2021-04-09 17:01:00 -07:00
"bs58": "^4.0.1",
"buffer-layout": "^1.2.0",
2021-04-02 11:26:21 -07:00
"immer": "^9.0.1",
"immutable-tuple": "^0.4.10",
2021-03-26 09:44:55 -07:00
"next": "latest",
2021-04-11 14:25:01 -07:00
"next-themes": "^0.0.14",
2021-04-12 06:32:01 -07:00
"postcss-preset-env": "^6.7.0",
2021-03-26 09:44:55 -07:00
"react": "^17.0.1",
2021-04-07 16:06:02 -07:00
"react-cool-dimensions": "^2.0.1",
"react-dom": "^17.0.1",
"react-grid-layout": "^1.2.4",
2021-04-09 07:27:49 -07:00
"react-portal": "^4.2.1",
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": {
"@babel/core": "^7.13.10",
"@emotion/babel-plugin": "^11.2.0",
"@svgr/webpack": "^5.5.0",
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.14.2",
"@typescript-eslint/parser": "^4.14.2",
"autoprefixer": "^10.2.5",
2021-03-26 09:44:55 -07:00
"babel-jest": "^26.6.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.19.0",
2021-04-02 11:26:21 -07:00
"eslint-plugin-react-hooks": "^4.2.0",
2021-03-26 09:44:55 -07:00
"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",
2021-03-26 09:44:55 -07:00
"prettier": "^2.0.2",
"tailwindcss": "^2.0.4",
"typescript": "^4.1.3"
2021-03-26 09:44:55 -07:00
}
}