7fcecc22d9
* TypeScript in the utils directory, README fixes * Remove unused methods * Added unnecessary space * Some env variable cleanup * Bug in change * Another file to ts * App.tsx * Header and Footer to tsx * Few more TS migrations and add a commit hash title to the uni icon * Few more TS migrations and put commit hash in code link * Splitting up files * Splitting up files (merged dark mode changes)
85 lines
2.6 KiB
JSON
85 lines
2.6 KiB
JSON
{
|
|
"name": "uniswap",
|
|
"description": "Uniswap Protocol",
|
|
"version": "0.1.0",
|
|
"homepage": "https://uniswap.exchange",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@ethersproject/units": "^5.0.0-beta.132",
|
|
"@material-ui/core": "^4.9.5",
|
|
"@reach/dialog": "^0.2.8",
|
|
"@reach/tooltip": "^0.2.0",
|
|
"@types/jest": "^25.1.3",
|
|
"@types/node": "^13.7.4",
|
|
"@types/react": "^16.9.21",
|
|
"@types/react-dom": "^16.9.5",
|
|
"@uniswap/sdk": "^2.0.3",
|
|
"@uniswap/v2-core": "1.0.0",
|
|
"@uniswap/v2-periphery": "1.0.0-beta.0",
|
|
"@web3-react/core": "^6.0.2",
|
|
"@web3-react/fortmatic-connector": "^6.0.2",
|
|
"@web3-react/injected-connector": "^6.0.3",
|
|
"@web3-react/network-connector": "^6.0.4",
|
|
"@web3-react/portis-connector": "^6.0.2",
|
|
"@web3-react/walletconnect-connector": "^6.0.2",
|
|
"@web3-react/walletlink-connector": "^6.0.2",
|
|
"copy-to-clipboard": "^3.2.0",
|
|
"cross-env": "^7.0.2",
|
|
"escape-string-regexp": "^2.0.0",
|
|
"ethers": "^4.0.44",
|
|
"history": "^4.9.0",
|
|
"i18next": "^15.0.9",
|
|
"i18next-browser-languagedetector": "^3.0.1",
|
|
"i18next-xhr-backend": "^2.0.1",
|
|
"jazzicon": "^1.5.0",
|
|
"polished": "^3.3.2",
|
|
"prettier": "^1.17.0",
|
|
"qrcode.react": "^0.9.3",
|
|
"react": "^16.8.6",
|
|
"react-device-detect": "^1.6.2",
|
|
"react-dom": "^16.8.6",
|
|
"react-feather": "^2.0.8",
|
|
"react-ga": "^2.5.7",
|
|
"react-i18next": "^10.7.0",
|
|
"react-router-dom": "^5.0.0",
|
|
"react-scripts": "^3.0.1",
|
|
"react-spring": "^8.0.27",
|
|
"react-switch": "^5.0.1",
|
|
"react-use-gesture": "^6.0.14",
|
|
"rebass": "^4.0.7",
|
|
"styled-components": "^4.2.0",
|
|
"typescript": "^3.7.5",
|
|
"use-media": "^1.4.0"
|
|
},
|
|
"scripts": {
|
|
"start": "cross-env REACT_APP_GIT_COMMIT_HASH=$(git show -s --format=%H) react-scripts start",
|
|
"build": "cross-env REACT_APP_GIT_COMMIT_HASH=$(git show -s --format=%H) react-scripts build",
|
|
"test": "react-scripts test --env=jsdom",
|
|
"eject": "react-scripts eject",
|
|
"lint:base": "yarn eslint './src/**/*.{js,jsx}'",
|
|
"format:base": "yarn prettier './src/**/*.{js,jsx,scss}'",
|
|
"fix:lint": "yarn lint:base --fix",
|
|
"fix:format": "yarn format:base --write",
|
|
"fix:all": "yarn fix:lint && yarn fix:format",
|
|
"check:lint": "yarn lint:base",
|
|
"check:format": "yarn format:base --check",
|
|
"check:all": "yarn check:lint && yarn check:format"
|
|
},
|
|
"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"
|
|
]
|
|
},
|
|
"license": "GPL-3.0-or-later"
|
|
}
|