-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
{
"name": "fractalflows-frontend",
"private": true,
"scripts": {
"dev": "next dev --port 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"node:start": "export $(cat .env) && hardhat node",
"contracts:compile": "export $(cat .env) && hardhat compile",
"contracts:deploy": "export $(cat .env) && hardhat run scripts/deploy.js",
"contracts:deploy:localhost": "npm run contracts:deploy -- --network localhost",
"contracts:deploy:goerli": "npm run contracts:deploy -- --network goerli",
"contracts:verify:goerli": "export $(cat .env) && hardhat verify --network goerli"
},
"dependencies": {
"@apollo/client": "^3.5.6",
"@emotion/react": "^11.7.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.5",
"@mui/lab": "^5.0.0-alpha.62",
"@mui/material": "^5.2.5",
"@openzeppelin/contracts": "^4.6.0",
"@sentry/nextjs": "^7.16.0",
"@walletconnect/web3-provider": "^1.7.0",
"d3": "3.5.16",
"ethers": "^5.6.4",
"graphql": "^16.2.0",
"lodash-es": "^4.17.21",
"next": "12.2.1",
"notistack": "^2.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.22.5",
"sharp": "^0.29.3",
"siwe": "^0.1.2",
"styled-components": "^5.3.3",
"web3modal": "^1.9.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/lodash-es": "^4.17.5",
"@types/node": "17.0.1",
"@types/react": "17.0.37",
"chai": "^4.3.6",
"eslint": "8.5.0",
"eslint-config-next": "12.0.7",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.10.0",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^7.0.4",
"solhint": "^3.3.7",
"typescript": "4.5.4"
}
}