-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
157 lines (157 loc) · 5.37 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "juice-interface",
"version": "0.1.0",
"private": true,
"browser": {
"fs": false
},
"scripts": {
"prebuild": "yarn predev",
"build": "NEXT_PUBLIC_VERSION=$(git rev-parse --short HEAD) next build",
"codegen": "graphql-code-generator --config codegen.yml -r dotenv/config",
"compile-styles": "lessc ./node_modules/antd/dist/antd.less ./src/styles/antd.css --js",
"predev": "yarn compile-styles && yarn i18n:compile && yarn codegen",
"dev": "yarn prestart && next dev",
"find-deadcode": "ts-prune",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"i18n:compile": "NODE_ENV=development yarn i18n:extract-source-locale && lingui compile",
"i18n:extract": "./scripts/extract-translations-template.sh",
"i18n:extract-source-locale": "NODE_ENV=development lingui extract --locale en",
"i18n:lint": "./scripts/lint-translations-template.sh",
"postinstall": "yarn i18n:compile",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"lint-staged": "lint-staged",
"lint:fix": "yarn lint --fix",
"prepare": "husky install",
"pristine": "rm -Rf node_modules && yarn cache clean --all && yarn install",
"prestart": "yarn compile-styles",
"start": "NEXT_PUBLIC_VERSION=$(git rev-parse --short HEAD) next start",
"test": "jest test",
"ts:compile": "tsc --noEmit --incremental"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": [
"eslint",
"prettier --write"
]
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"resolutions": {
"//": "See https://github.com/facebook/create-react-app/issues/11773",
"react-error-overlay": "6.0.9"
},
"dependencies": {
"@apollo/client": "3.6.9",
"@arcxmoney/analytics": "^1.0.1",
"@jbx-protocol/contracts-v1": "2.0.0",
"@jbx-protocol/contracts-v2-4.0.0": "npm:@jbx-protocol/contracts-v2@4.0.0",
"@jbx-protocol/contracts-v2-latest": "npm:@jbx-protocol/contracts-v2@8.0.4",
"@jbx-protocol/juice-721-delegate": "3.0.0",
"@jbx-protocol/juice-contracts-v3": "2.0.2",
"@jbx-protocol/juice-v1-token-terminal": "1.0.1",
"@jbx-protocol/project-handles": "2.0.2",
"@jbx-protocol/ve-nft": "0.0.6",
"@lingui/cli": "^3.13.0",
"@lingui/detect-locale": "^3.13.0",
"@lingui/macro": "^3.13.0",
"@lingui/react": "^3.13.0",
"@metamask/providers": "^10.0.0",
"@pinata/sdk": "^1.1.23",
"@reduxjs/toolkit": "^1.6.2",
"@sentry/react": "^6.18.2",
"@sentry/tracing": "^6.18.2",
"@sushiswap/sdk": "5.0.0-canary.116",
"@uniswap/sdk": "3.0.3",
"@uniswap/sdk-core": "3.0.1",
"@uniswap/v3-sdk": "3.8.2",
"@walletconnect/web3-provider": "1.8.0",
"@web3-onboard/coinbase": "2.1.1",
"@web3-onboard/core": "2.8.1",
"@web3-onboard/gnosis": "2.1.5",
"@web3-onboard/injected-wallets": "2.2.0",
"@web3-onboard/keystone": "2.2.1",
"@web3-onboard/ledger": "2.2.1",
"@web3-onboard/react": "2.3.1",
"@web3-onboard/trezor": "2.2.1",
"@web3-onboard/walletconnect": "2.1.1",
"antd": "4.24.0",
"autolinker": "^3.14.3",
"axios": "0.27.2",
"bottleneck": "^2.19.5",
"erc-20-abi": "^1.0.0",
"ethereum-block-by-date": "1.4.5",
"ethers": "^5.6.9",
"formidable": "^2.0.1",
"graphql": "^16.5.0",
"less": "4.1.2",
"lodash": "^4.17.21",
"next": "12.2.2",
"qs": "^6.11.0",
"react": "^17",
"react-dom": "^17.0.1",
"react-query": "^3.33.2",
"react-redux": "^7.2.2",
"react-stop-propagation": "^0.2.0",
"recharts": "2.1.12",
"sass": "^1.52.1",
"sharp": "^0.31.1",
"tailwind-merge": "^1.8.0",
"tiny-invariant": "^1.2.0",
"use-deep-compare-effect": "^1.6.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@graphql-codegen/cli": "^2.9.1",
"@graphql-codegen/introspection": "^2.2.0",
"@graphql-codegen/typescript": "^2.7.2",
"@graphql-codegen/typescript-operations": "^2.5.2",
"@graphql-codegen/typescript-react-apollo": "^3.3.2",
"@graphql-codegen/typescript-resolvers": "^2.7.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^12.1.10",
"@types/ethereum-block-by-date": "1.4.1",
"@types/formidable": "^2.0.5",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.180",
"@types/node": "^12.0.0",
"@types/qs": "^6.9.7",
"@types/react": "^17",
"@types/react-dom": "^17",
"@types/react-redux": "^7.1.16",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"autoprefixer": "10.4.13",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^7.0.0",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"postcss-cli": "10.0.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"react-error-overlay": "6.0.9",
"react-test-renderer": "^17",
"tailwindcss": "3.2.3",
"ts-prune": "^0.10.3",
"typescript": "4.7.4"
}
}