solana/explorer/package.json

85 lines
2.4 KiB
JSON
Raw Normal View History

2020-03-13 02:07:58 -07:00
{
"name": "explorer",
"version": "0.1.0",
"private": true,
"dependencies": {
"@blockworks-foundation/mango-client": "^3.6.7",
"@bonfida/bot": "^0.5.3",
"@bonfida/spl-name-service": "^0.1.30",
Adding NFT support to the Explorer (#20009) * Adding NFT support to the explorer / copying over required Metaplex logic * Fixing a whitespace issue causing validation to fail * Removed MetadataProvider and instead metadata is being stamped on TokenProgramData * Fixing EOF new line sanity check issue * Added styling improvements to the Creator dropdown and NFT asset * Forgot to run Prettier * Creator address links were only redirecting to Mainnet. This redirects to the appropriate cluster * Removed dependencies not required for Explorer based use. Fixed package-lock.json because of a legacy npm version * Removed react-content-loader and popperjs * Removed MeshArt. Nobody likes VR anyways * Capped HTML animation asset width to 150px * Added an Editon check to properly identify NFTs * Refactoring away for un-necessary helpers * Dropped antd and added an image loading placeholder * Added a HTML animation flickering fix * Removed arweave check for valid uri properties * Resolving some nit comments and cleaning up * Adding Tooltips to better explain the content in the NFT Header * Started consuming MasterEdition data which is being used to display Seller Fee and Max Supply information in the Token Account Section * Fixing a bug where Edition NFTs weren't properly supported * Added better Edition support and labeling when there isn't Master Edition information added to metaplex metadata * Fixed Max Supply issue where 0 should be displayed as 1 * Updated tooltips to be shorter and more user friendly * Separting NFTHeader from AccountDetailsPage, adding a new TokenSection for NFTs and adding some cleanup
2021-10-05 11:30:05 -07:00
"@cloudflare/stream-react": "^1.2.0",
"@metamask/jazzicon": "^2.0.0",
"@metaplex/js": "4.12.0",
"@project-serum/anchor": "0.23.0",
"@project-serum/serum": "^0.13.61",
"@react-hook/debounce": "^4.0.0",
"@sentry/react": "^7.6.0",
"@solana/buffer-layout": "^3.0.0",
"@solana/spl-token-registry": "^0.2.3736",
"@solana/web3.js": "^1.53.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.3",
"@types/bn.js": "^5.1.0",
2020-03-19 07:31:05 -07:00
"@types/bs58": "^4.0.1",
"@types/chai": "^4.3.1",
"@types/chart.js": "^2.9.34",
"@types/classnames": "^2.3.1",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.3.2",
"@types/react-select": "^3.1.2",
"@types/socket.io-client": "^3.0.0",
"axios": "^0.27.2",
"bignumber.js": "^9.0.2",
"bn.js": "^5.2.0",
"bootstrap": "~5.1.3",
2020-03-19 07:31:05 -07:00
"bs58": "^4.0.1",
"chai": "^4.3.6",
"chart.js": "^2.9.4",
"classnames": "2.3.1",
"coingecko-api": "^1.0.10",
"cross-fetch": "^3.1.4",
"humanize-duration-ts": "^2.1.1",
"p-limit": "^3.0.0",
"prettier": "^2.7.1",
"react": "^18.1.0",
"react-chartjs-2": "^2.11.2",
"react-content-loader": "^6.1.0",
"react-countup": "^6.1.0",
"react-dom": "^18.2.0",
"react-json-view": "^1.21.3",
"react-moment": "^1.1.1",
"react-router-dom": "^5.3.0",
"react-scripts": "^4.0.3",
"react-select": "^4.3.1",
"sass": "^1.53.0",
"superstruct": "^0.15.3",
"swr": "^1.3.0",
"typescript": "^4.7.4"
2020-03-13 02:07:58 -07:00
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
2020-03-13 03:23:46 -07:00
"format": "prettier -c \"**/*.+(js|jsx|ts|tsx|json|css|md)\"",
"format:fix": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|css|md)\""
2020-03-13 02:07:58 -07:00
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
2020-03-13 02:07:58 -07:00
}