uniswap-interface-uncensored/package.json

60 lines
1.8 KiB
JSON
Raw Normal View History

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-04-15 21:05:54 +03:00
"homepage": ".",
2017-10-28 10:55:27 +03:00
"private": true,
"dependencies": {
2018-10-10 13:12:45 +03:00
"bignumber.js": "^7.2.1",
2018-10-07 01:53:46 +03:00
"classnames": "^2.2.6",
2019-04-15 19:06:54 +03:00
"ethers": "^4.0.27",
2018-10-07 12:38:43 +03:00
"fuse": "^0.4.0",
"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",
"node-sass": "^4.11.0",
2019-04-15 21:05:54 +03:00
"prop-types": "^15.7.2",
2019-04-15 19:06:54 +03:00
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-ga": "^2.5.7",
"react-i18next": "^10.7.0",
2018-03-11 08:50:54 +03:00
"react-redux": "^5.0.7",
2019-04-15 21:05:54 +03:00
"react-router-dom": "^5.0.0",
2019-04-15 19:06:54 +03:00
"react-scripts": "^2.1.8",
2018-10-07 12:38:43 +03:00
"react-transition-group": "1.x",
2018-03-11 08:50:54 +03:00
"redux": "^3.7.2",
"redux-subscriber": "^1.1.0",
2018-03-11 08:50:54 +03:00
"redux-thunk": "^2.2.0",
2018-10-07 16:01:45 +03:00
"ua-parser-js": "^0.7.18",
"web3": "1.0.0-beta.52",
"web3-react": "^5.0.4"
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",
"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",
2017-10-28 10:55:27 +03:00
"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"
},
2019-04-15 21:05:54 +03:00
"license": "GPL-3.0-or-later",
"devDependencies": {
"prettier": "^1.17.0"
2018-10-07 00:24:17 +03:00
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
2017-10-28 10:55:27 +03:00
}