44d77ce948
* migrate core logic * finalize swap migration * upgrade react-scripts and fix errors/warnings * finalize swap, modularize currency input * remove console.logs * copy swap logic for send * remove unnecessary variable * tighten caching logic * snappier ens integration
62 lines
1.9 KiB
JSON
62 lines
1.9 KiB
JSON
{
|
|
"name": "uniswap",
|
|
"description": "Uniswap Exchange Protocol",
|
|
"version": "0.1.0",
|
|
"homepage": ".",
|
|
"private": true,
|
|
"dependencies": {
|
|
"bignumber.js": "^7.2.1",
|
|
"classnames": "^2.2.6",
|
|
"escape-string-regexp": "^2.0.0",
|
|
"ethers": "^4.0.27",
|
|
"fuse": "^0.4.0",
|
|
"i18next": "^15.0.9",
|
|
"i18next-browser-languagedetector": "^3.0.1",
|
|
"i18next-xhr-backend": "^2.0.1",
|
|
"jazzicon": "^1.5.0",
|
|
"lodash.merge": "^4.6.1",
|
|
"node-sass": "^4.11.0",
|
|
"prop-types": "^15.7.2",
|
|
"react": "^16.8.6",
|
|
"react-dom": "^16.8.6",
|
|
"react-ga": "^2.5.7",
|
|
"react-i18next": "^10.7.0",
|
|
"react-redux": "^5.0.7",
|
|
"react-router-dom": "^5.0.0",
|
|
"react-scripts": "^3.0.0",
|
|
"react-transition-group": "1.x",
|
|
"redux": "^3.7.2",
|
|
"redux-subscriber": "^1.1.0",
|
|
"redux-thunk": "^2.2.0",
|
|
"ua-parser-js": "^0.7.18",
|
|
"web3": "1.0.0-beta.52",
|
|
"web3-react": "^5.0.4"
|
|
},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"start:rinkeby": "REACT_APP_NETWORK_ID=4 REACT_APP_NETWORK_NAME='Rinkeby Test Network' yarn start",
|
|
"build:rinkeby": "REACT_APP_NETWORK_ID=4 REACT_APP_NETWORK_NAME='Rinkeby Test Network' yarn 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"
|
|
},
|
|
"license": "GPL-3.0-or-later",
|
|
"devDependencies": {
|
|
"prettier": "^1.17.0"
|
|
},
|
|
"browserslist": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not ie <= 11",
|
|
"not op_mini all"
|
|
]
|
|
}
|