2017-10-28 10:55:27 +03:00
|
|
|
{
|
2017-11-02 23:43:27 +03:00
|
|
|
"name": "uniswap",
|
2019-04-15 21:05:54 +03:00
|
|
|
"description": "Uniswap Exchange Protocol",
|
2017-10-28 10:55:27 +03:00
|
|
|
"version": "0.1.0",
|
2019-06-14 17:31:05 +03:00
|
|
|
"homepage": "https://uniswap.exchange",
|
2017-10-28 10:55:27 +03:00
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
2019-05-30 23:42:25 +03:00
|
|
|
"@reach/dialog": "^0.2.8",
|
2019-05-14 17:19:09 +03:00
|
|
|
"@reach/tooltip": "^0.2.0",
|
2019-08-13 03:37:32 +03:00
|
|
|
"@uniswap/sdk": "^1.0.0-beta.4",
|
2019-12-24 00:28:10 +03:00
|
|
|
"@web3-react/core": "^6.0.2",
|
|
|
|
"@web3-react/fortmatic-connector": "^6.0.2",
|
|
|
|
"@web3-react/injected-connector": "^6.0.3",
|
2020-01-07 03:47:23 +03:00
|
|
|
"@web3-react/network-connector": "^6.0.4",
|
2019-12-24 00:28:10 +03:00
|
|
|
"@web3-react/portis-connector": "^6.0.2",
|
|
|
|
"@web3-react/walletconnect-connector": "^6.0.2",
|
|
|
|
"@web3-react/walletlink-connector": "^6.0.2",
|
2019-05-30 23:42:25 +03:00
|
|
|
"copy-to-clipboard": "^3.2.0",
|
2019-05-03 23:37:59 +03:00
|
|
|
"escape-string-regexp": "^2.0.0",
|
2020-02-03 01:23:42 +03:00
|
|
|
"ethers": "^4.0.44",
|
2019-11-26 01:56:31 +03:00
|
|
|
"history": "^4.9.0",
|
2019-04-16 03:06:39 +03:00
|
|
|
"i18next": "^15.0.9",
|
|
|
|
"i18next-browser-languagedetector": "^3.0.1",
|
|
|
|
"i18next-xhr-backend": "^2.0.1",
|
2018-10-07 01:53:46 +03:00
|
|
|
"jazzicon": "^1.5.0",
|
2019-05-30 23:42:25 +03:00
|
|
|
"polished": "^3.3.2",
|
2019-11-26 01:56:31 +03:00
|
|
|
"qrcode.react": "^0.9.3",
|
2019-04-15 19:06:54 +03:00
|
|
|
"react": "^16.8.6",
|
2019-05-30 23:42:25 +03:00
|
|
|
"react-device-detect": "^1.6.2",
|
2019-04-15 19:06:54 +03:00
|
|
|
"react-dom": "^16.8.6",
|
2019-05-30 23:42:25 +03:00
|
|
|
"react-feather": "^1.1.6",
|
2019-04-16 03:06:39 +03:00
|
|
|
"react-ga": "^2.5.7",
|
|
|
|
"react-i18next": "^10.7.0",
|
2019-04-15 21:05:54 +03:00
|
|
|
"react-router-dom": "^5.0.0",
|
2019-05-14 17:19:09 +03:00
|
|
|
"react-scripts": "^3.0.1",
|
2019-11-26 01:56:31 +03:00
|
|
|
"react-spring": "^8.0.27",
|
2019-08-13 02:19:03 +03:00
|
|
|
"react-switch": "^5.0.1",
|
2019-11-26 01:56:31 +03:00
|
|
|
"react-use-gesture": "^6.0.14",
|
|
|
|
"styled-components": "^4.2.0"
|
2017-10-28 10:55:27 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "react-scripts start",
|
2019-04-15 18:14:03 +03:00
|
|
|
"build": "react-scripts build",
|
2017-10-28 10:55:27 +03:00
|
|
|
"test": "react-scripts test --env=jsdom",
|
2019-04-15 19:56:40 +03:00
|
|
|
"eject": "react-scripts eject",
|
|
|
|
"lint:base": "yarn eslint './src/**/*.{js,jsx}'",
|
|
|
|
"format:base": "yarn prettier './src/**/*.{js,jsx,scss}'",
|
2019-04-16 03:06:39 +03:00
|
|
|
"fix:lint": "yarn lint:base --fix",
|
|
|
|
"fix:format": "yarn format:base --write",
|
|
|
|
"fix:all": "yarn fix:lint && yarn fix:format",
|
2019-04-15 19:56:40 +03:00
|
|
|
"check:lint": "yarn lint:base",
|
|
|
|
"check:format": "yarn format:base --check",
|
|
|
|
"check:all": "yarn check:lint && yarn check:format"
|
|
|
|
},
|
2019-05-14 17:19:09 +03: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"
|
|
|
|
]
|
|
|
|
},
|
2019-04-15 21:05:54 +03:00
|
|
|
"license": "GPL-3.0-or-later",
|
2019-04-15 19:56:40 +03:00
|
|
|
"devDependencies": {
|
|
|
|
"prettier": "^1.17.0"
|
2019-05-14 17:19:09 +03:00
|
|
|
}
|
2017-10-28 10:55:27 +03:00
|
|
|
}
|