Explorer: Split off devDependencies from dependencies (#28073)
This commit is contained in:
parent
874fbcb9d4
commit
fa0509cdd1
File diff suppressed because it is too large
Load Diff
|
@ -2,19 +2,51 @@
|
|||
"name": "explorer",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test",
|
||||
"format": "prettier -c \"**/*.+(js|jsx|ts|tsx|json|css|md)\"",
|
||||
"format:fix": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|css|md)\""
|
||||
},
|
||||
"dependencies": {
|
||||
"@blockworks-foundation/mango-client": "^3.6.7",
|
||||
"@bonfida/spl-name-service": "^0.1.30",
|
||||
"@cloudflare/stream-react": "^1.2.0",
|
||||
"@metamask/jazzicon": "^2.0.0",
|
||||
"@metaplex/js": "4.12.0",
|
||||
"@project-serum/anchor": "0.23.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.63.1",
|
||||
"axios": "^0.27.2",
|
||||
"bignumber.js": "^9.0.2",
|
||||
"bn.js": "^5.2.0",
|
||||
"bootstrap": "^5.1.3",
|
||||
"bs58": "^4.0.1",
|
||||
"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",
|
||||
"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",
|
||||
"superstruct": "^0.15.3",
|
||||
"swr": "^1.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@testing-library/jest-dom": "^5.16.5",
|
||||
"@testing-library/react": "^13.3.0",
|
||||
"@testing-library/user-event": "^14.2.3",
|
||||
|
@ -30,41 +62,11 @@
|
|||
"@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",
|
||||
"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"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test",
|
||||
"format": "prettier -c \"**/*.+(js|jsx|ts|tsx|json|css|md)\"",
|
||||
"format:fix": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|css|md)\""
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "react-app"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue