forked from gmx-io/gmx-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.9 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
127
128
129
{
"name": "gambit-interface",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "3.5.6",
"@davatar/react": "1.8.1",
"@ethersproject/providers": "5.5.1",
"@ethersproject/units": "5.5.0",
"@headlessui/react": "1.6.1",
"@lingui/core": "3.13.3",
"@lingui/react": "3.13.3",
"@rainbow-me/rainbowkit": "0.12.18",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "11.2.7",
"@testing-library/user-event": "12.8.3",
"@types/node": "18.7.13",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/react-router-dom": "5.3.3",
"@uniswap/sdk-core": "3.0.1",
"@uniswap/v3-sdk": "3.9.0",
"bigdecimal": "0.6.1",
"classnames": "2.3.1",
"date-fns": "2.27.0",
"env-cmd": "^10.1.0",
"eth-testing": "1.9.1",
"ethers": "5.6.8",
"framer-motion": "4.1.17",
"graphql": "15.8.0",
"hex-to-rgba": "2.0.1",
"html-to-image": "^1.10.8",
"lodash": "4.17.21",
"qrcode.react": "^3.1.0",
"query-string": "7.1.1",
"rc-slider": "9.7.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-hot-toast": "2.2.0",
"react-icons": "4.3.1",
"react-remove-scroll": "2.5.5",
"react-router-dom": "5.3.0",
"react-scripts": "5.0.1",
"react-select": "5.2.1",
"react-tabs": "3.2.3",
"react-toastify": "6.0.9",
"react-use": "17.3.1",
"recharts": "2.1.8",
"sass": "1.55.0",
"swr": "2.2.1",
"typescript": "4.7.4",
"viem": "1.1.4",
"wagmi": "0.12.19",
"web-vitals": "1.1.2"
},
"resolutions": {
"react-error-overlay": "6.0.9"
},
"scripts": {
"start": "PORT=3010 react-app-rewired start",
"start-home": "yarn lingui:prepare && PORT=3010 env-cmd -e development-home react-app-rewired start",
"start-app": "yarn lingui:prepare && PORT=3011 env-cmd -e development-app react-app-rewired start",
"start-win": "set PORT=3010&react-app-rewired start",
"build": "INLINE_RUNTIME_CHUNK=false react-app-rewired build",
"build-home": "INLINE_RUNTIME_CHUNK=false env-cmd -e production-home react-app-rewired build",
"build-app": "INLINE_RUNTIME_CHUNK=false env-cmd -e production-app react-app-rewired build",
"test": "react-app-rewired test",
"test:ci": "react-app-rewired test --watchAll=false --transformIgnorePatterns \"node_modules/(?!@wagmi)/\"",
"eject": "react-scripts eject",
"lint": "node node_modules/.bin/eslint src",
"pre-commit": "npm run test -- --watchAll=false && npm run lint",
"prepare": "husky install && yarn lingui:prepare",
"extract": "NODE_ENV=development lingui extract --clean",
"compile": "lingui compile",
"lingui:prepare": "NODE_ENV=development yarn extract && yarn compile",
"lingui:generate": "NODE_ENV=development lingui extract --overwrite",
"tscheck": "tsc -p tsconfig.json --noEmit"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-console": "warn"
}
},
"browserslist": {
"production": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"./jest-env.js"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@lingui/cli": "3.13.3",
"@lingui/loader": "3.13.3",
"@lingui/macro": "3.13.3",
"buffer": "6.0.3",
"eslint": "^8.41.0",
"eslint-config-react-app": "^7.0.1",
"husky": "7.0.4",
"lint-staged": "12.3.4",
"prettier": "2.5.1",
"react-app-rewired": "2.2.1"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"eslint --fix --max-warnings=0 ./src",
"prettier --write"
]
},
"packageManager": "[email protected]"
}