-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.63 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "truffle compile --all && ./cleanup-abi.bash && next build && next export",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"export": "next build && next export",
"verify": "hardhat verify --network harmonyTestnet --contract contracts/OpenWorld.sol:OpenWorld 0x6c14d24eae373ae930768adbfa75c406119bf569",
"analyze": "ANALYZE=true yarn build"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.1",
"@chakra-ui/react": "^1.8.6",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@metamask/detect-provider": "^1.2.0",
"@next/bundle-analyzer": "^12.1.6",
"@openzeppelin/contracts": "^3.4.1",
"@openzeppelin/contracts-upgradeable": "^3.4.1",
"@truffle/hdwallet-provider": "^1.4.0",
"@walletconnect/web3-provider": "^1.7.7",
"@web3-react/core": "^6.1.9",
"abdk-libraries-solidity": "2.4.0",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"ethers": "^5.6.1",
"framer-motion": "^6.3.6",
"gray-matter": "^4.0.2",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.1",
"next": "^12.1.5",
"next-optimized-images": "^2.6.2",
"react": "17.0.2",
"react-countdown": "^2.3.2",
"react-dom": "17.0.2",
"react-map-interaction": "^2.1.0",
"react-redux": "^8.0.1",
"react-zoom-pan-pinch": "^2.1.3",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"remark": "^14.0.1",
"remark-html": "^15.0.0",
"usehooks-ts": "^2.5.4",
"web3": "^1.7.1",
"web3modal": "^1.9.5",
"webp-loader": "^0.6.0"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"@openzeppelin/truffle-upgrades": "1.8.0",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"hardhat": "^2.9.3",
"husky": ">=6",
"lint-staged": "^12.3.6",
"prettier": "^2.6.0",
"truffle": "^5.2.3",
"truffle-contract-size": "^2.0.1",
"truffle-plugin-verify": "^0.5.14",
"typescript": "^4.6.2"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,css,md,ts,tsx}": "prettier --write ."
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
}
}