forked from 1azy-guy/CoolSwap-interface
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 4.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "name",
"private": true,
"license": "GPL-3.0-or-later",
"devDependencies": {
"@ethersproject/experimental": "5.0.1",
"@popperjs/core": "2.9.2",
"@reach/dialog": "0.15.0",
"@reach/portal": "0.15.0",
"@reduxjs/toolkit": "1.6.0",
"@truffle/hdwallet-provider": "^1.4.2",
"@types/jest": "26.0.23",
"@types/lodash.flatmap": "4.5.6",
"@types/multicodec": "1.0.0",
"@types/node": "14.17.4",
"@types/qs": "6.9.6",
"@types/react": "17.0.11",
"@types/react-dom": "17.0.8",
"@types/react-redux": "7.1.16",
"@types/react-router-dom": "5.1.7",
"@types/react-virtualized-auto-sizer": "1.0.0",
"@types/react-window": "1.8.3",
"@types/rebass": "4.0.8",
"@types/styled-components": "5.1.10",
"@types/wcag-contrast": "3.0.0",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"@uniswap/lib": "^1.1.1",
"@uniswap/liquidity-staker": "1.0.2",
"@uniswap/sdk": "simone1999/icecreamswap-sdk#0f0ad14a80c90bee1b9c74cf28769b49a74f91d2",
"@uniswap/token-lists": "1.0.0-beta.19",
"@uniswap/v2-core": "1.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"@web3-react/core": "6.1.9",
"@web3-react/fortmatic-connector": "6.1.6",
"@web3-react/injected-connector": "6.0.7",
"@web3-react/portis-connector": "6.1.1",
"@web3-react/walletconnect-connector": "6.1.4",
"@web3-react/walletlink-connector": "6.2.0",
"ajv": "6.12.6",
"cids": "1.1.7",
"copy-to-clipboard": "3.3.1",
"cross-env": "7.0.3",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"ethers": "5.3.0",
"gh-pages": "3.2.3",
"i18next": "20.3.1",
"i18next-browser-languagedetector": "6.1.2",
"i18next-xhr-backend": "3.2.2",
"inter-ui": "3.19.1",
"jazzicon": "1.5.0",
"lodash.flatmap": "4.5.0",
"multicodec": "3.0.1",
"multihashes": "4.0.2",
"node-vibrant": "3.1.6",
"polished": "^4.1.3",
"prettier": "2.3.2",
"qs": "6.10.1",
"react": "17.0.2",
"react-device-detect": "1.17.0",
"react-dom": "17.0.2",
"react-feather": "2.0.9",
"react-i18next": "10.13.2",
"react-popper": "2.2.5",
"react-redux": "7.2.4",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.4",
"react-spring": "8.0.27",
"react-use-gesture": "9.1.3",
"react-window": "1.8.6",
"rebass": "4.0.7",
"redux-localstorage-simple": "2.4.1",
"styled-components": "5.3.0",
"truffle-plugin-verify": "^0.5.15",
"typescript": "3.9.10",
"wcag-contrast": "3.0.0",
"@unstoppabledomains/resolution": "^8.3.3"
},
"resolutions": {
"@walletconnect/web3-provider": "1.4.1"
},
"scripts": {
"start": "yarn copy_forks && yarn copy_tokens && react-scripts start",
"start_windows": "yarn copy_forks_windows && yarn copy_tokens_windows && react-scripts start",
"build": "yarn copy_forks && yarn copy_tokens && react-scripts build",
"build_windows": "yarn copy_forks_windows && yarn copy_tokens_windows && react-scripts build",
"start_prebuild": "http-server build -a localhost -p 3001 -o",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"postinstall": "yarn postinstall_linux",
"postinstall_windows": "yarn copy_forks_windows",
"postinstall_linux": "yarn copy_forks",
"copy_tokens_windows": "xcopy /Y .\\forks\\@uniswap\\default-token-list\\build\\uniswap-default.tokenlist.json .\\public\\default.tokenlist.json",
"copy_tokens": "cp ./forks/@uniswap/default-token-list/build/uniswap-default.tokenlist.json ./public/default.tokenlist.json",
"copy_forks_windows": "xcopy /Y /E /I .\\forks\\@uniswap\\* .\\node_modules\\@uniswap",
"copy_forks": "cp -r ./forks/@uniswap/ ./node_modules/",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@uniswap/default-token-list": "2.0.0",
"dotenv": "^10.0.0",
"web3-utils": "^1.5.3"
},
"eslintConfig": {
"extends": "react-app",
"ignorePatterns": [
"node_modules"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}