This repository has been archived by the owner on Jan 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.77 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"sideEffects": false,
"scripts": {
"dev": "yarn run prebuild:local && next dev",
"dev:cache": "next dev",
"prebuild:local": "node -r dotenv/config ./scripts/prebuild dotenv_config_path=.env.local",
"prebuild": "node ./scripts/prebuild",
"build": "next build",
"build:local": "yarn run prebuild:local && next build",
"start": "next start",
"lint": "next lint"
},
"license": "LicenseRef-LICENSE",
"dependencies": {
"@binance-chain/bsc-connector": "1.0.0",
"@ethersproject/contracts": "5.4.1",
"@ethersproject/strings": "^5.7.0",
"@fontsource/inter": "^4.5.14",
"@fontsource/roboto-mono": "^4.5.8",
"@gnosis.pm/safe-apps-provider": "0.13.2",
"@gnosis.pm/safe-apps-sdk": "7.8.0",
"@headlessui/react": "^1.7.4",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "6.2.13",
"bignumber.js": "^9.1.1",
"cheerio": "^1.0.0-rc.12",
"eslint": "8.28.0",
"eslint-config-next": "13.0.5",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-jsx": "10.0.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~5.1.0",
"eslint-plugin-unused-imports": "2.0.0",
"ethers": "^5.7.2",
"i18next": "^22.0.6",
"joi": "^17.7.0",
"next": "13.0.5",
"next-i18next": "^13.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-google-recaptcha": "^2.1.0",
"react-i18next": "^12.0.0",
"react-slick": "^0.29.0",
"react-syntax-highlighter": "^15.5.0",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.0.7",
"dotenv": "12.0.0",
"standard": "^17.0.0",
"styled-components": "5.3.3"
}
}