-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
112 lines (112 loc) · 3.86 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
{
"name": "yamato-interface",
"version": "0.1.0",
"license": "GPL-3.0-or-later",
"private": true,
"scripts": {
"postinstall": "patch -Np0 < patch/dirtyfix.patch || :",
"start": "yarn contracts:compile && react-scripts start",
"build": "yarn contracts:compile && react-scripts build",
"test": "yarn contracts:compile && react-scripts test",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"lint": "eslint . --ext .ts,.tsx ./src",
"lint:fix": "yarn lint --fix",
"format": "prettier --config .prettierrc.json --write '{src,cypress}/**/*.{js,jsx,ts,tsx}'",
"diff-check": "git diff --exit-code -- .",
"ci:format": "yarn lint:fix && yarn format && yarn diff-check",
"contracts:compile": "typechain --target ethers-v5 --out-dir src/infrastructures/abis/types './src/infrastructures/abis/**/*.json' './node_modules/@uniswap/v3-core/artifacts/contracts/**/*.json' './node_modules/@uniswap/v3-periphery/artifacts/contracts/**/*.json'",
"graphql:gen": "graphql-codegen --config codegen.yml && yarn format",
"svg:gen": "svgr ./src/assets/svg/sources --out-dir ./src/components/svgs && yarn format",
"eject": "react-scripts eject"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.6.5",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@ethersproject/experimental": "^5.4.0",
"@metamask/jazzicon": "^2.0.0",
"@reduxjs/toolkit": "^1.6.1",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/v3-periphery": "^1.2.1",
"@web3-react/abstract-connector": "^6.0.7",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.4",
"big.js": "^6.1.1",
"date-fns": "^2.23.0",
"formik": "^2.2.9",
"framer-motion": "^4",
"graphql": "^15.6.0",
"graphql-request": "^3.5.0",
"i18next": "^21.8.9",
"jsbi": "^3.2.5",
"ms.macro": "^2.0.0",
"polished": "^4.1.3",
"react": "^17.0.2",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-helmet": "^6.1.0",
"react-i18next": "^11.17.2",
"react-icons": "^4.7.1",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-transition-group": "^4.4.2",
"rebass": "^4.0.7",
"redux-localstorage-simple": "^2.4.1",
"styled-components": "^5.3.0",
"ua-parser-js": "^0.7.28",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.2.1",
"@graphql-codegen/typescript": "^2.2.4",
"@graphql-codegen/typescript-operations": "^2.1.8",
"@svgr/cli": "^5.5.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@typechain/ethers-v5": "^7.0.1",
"@types/big.js": "^6.1.1",
"@types/jest": "^26.0.15",
"@types/ms.macro": "^2.0.0",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-helmet": "^6.1.2",
"@types/react-router-dom": "^5.1.8",
"@types/react-transition-group": "^4.4.3",
"@types/rebass": "^4.0.9",
"@types/styled-components": "^5.1.11",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"cypress": "^8.5.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2",
"typechain": "^5.1.2",
"typescript": "^4.1.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=14.0.0 <17.0.0"
}
}