serum-dex-ui/package.json

97 lines
2.5 KiB
JSON
Raw Normal View History

2020-08-27 16:20:09 -07:00
{
"name": "serum-dex-ui",
"version": "0.1.0",
"private": true,
2020-08-29 19:54:38 -07:00
"homepage": "https://dex.projectserum.com/",
2020-08-27 16:20:09 -07:00
"dependencies": {
"@ant-design/icons": "^4.2.1",
"@craco/craco": "^5.6.4",
"@ledgerhq/hw-transport-webusb": "^5.41.0",
2020-12-09 11:20:39 -08:00
"@project-serum/associated-token": "0.1.0",
2020-11-15 22:12:13 -08:00
"@project-serum/awesome-serum": "1.0.1",
2021-03-07 12:24:23 -08:00
"@project-serum/pool": "0.2.2",
2021-06-30 06:09:38 -07:00
"@project-serum/serum": "^0.13.41",
2021-04-20 09:26:29 -07:00
"@project-serum/sol-wallet-adapter": "^0.2.0",
2021-07-03 12:17:58 -07:00
"@solana/spl-name-service": "^0.1.2",
2021-07-01 17:54:35 -07:00
"@solana/spl-token": "^0.1.6",
2020-11-01 02:29:19 -08:00
"@solana/web3.js": "0.86.1",
2020-08-27 16:20:09 -07:00
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@tsconfig/node12": "^1.0.7",
2020-11-01 02:29:19 -08:00
"@types/bn.js": "^4.11.6",
2020-10-08 00:14:18 -07:00
"@types/jest": "^26.0.14",
"@types/node": "^14.11.4",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
2020-08-27 16:20:09 -07:00
"antd": "^4.6.0",
"bn.js": "^5.1.3",
"craco-less": "^1.17.0",
"immutable-tuple": "^0.4.10",
"nanoid": "^3.1.22",
2020-08-27 16:20:09 -07:00
"qrcode.react": "^1.0.0",
2021-07-03 12:17:58 -07:00
"query-string": "^7.0.1",
2020-08-27 16:20:09 -07:00
"react": "^16.13.1",
"react-app-polyfill": "^1.0.5",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.1",
2020-11-01 02:29:19 -08:00
"react-is": "^17.0.1",
2020-08-27 16:20:09 -07:00
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
2020-10-08 00:14:18 -07:00
"styled-components": "^5.1.1",
"typescript": "^3.9.7"
2020-08-27 16:20:09 -07:00
},
"scripts": {
"predeploy": "git pull --ff-only && yarn && yarn build",
2020-08-29 19:54:38 -07:00
"deploy": "gh-pages -d build",
2020-08-27 16:20:09 -07:00
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"prettier": "prettier --write src"
2020-08-27 16:20:09 -07:00
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"transformIgnorePatterns": [
"^.+\\.cjs$"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true,
2020-09-01 11:24:03 -07:00
"arrowParens": "always",
2020-08-27 16:20:09 -07:00
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/ledgerhq__hw-transport": "^4.21.3",
"@types/ledgerhq__hw-transport-webusb": "^4.70.1",
2020-08-29 19:54:38 -07:00
"gh-pages": "^3.1.0",
2020-08-27 16:20:09 -07:00
"git-format-staged": "^2.1.0",
"husky": "^4.2.5",
"lint-staged": ">=10",
2020-10-08 00:14:18 -07:00
"prettier": "^2.0.5"
2020-08-27 16:20:09 -07:00
},
"lint-staged": {
2020-08-31 07:53:43 -07:00
"*.{js,jsx,css,md}": "prettier --write"
2020-08-27 16:20:09 -07:00
}
}