-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.85 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.85 KB
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": "multisig-web1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"nodestarter": "kill -9 $(lsof -ti:8545) || echo 'hardhat node not running' && npx hardhat node & sleep 5",
"deploy:contracts": "npx hardhat --network ${NETWORK} run scripts/deploy.ts",
"predev": "yarn nodestarter && yarn compile && NETWORK=local yarn deploy:contracts",
"compile": "npx hardhat compile"
},
"dependencies": {
"next": "12.0.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-toastify": "^8.1.0",
"zustand": "^3.6.5"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@openzeppelin/contracts": "^4.3.2",
"@typechain/ethers-v5": "^7.1.2",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.22",
"@types/jest": "^27.0.2",
"@types/node": "16.11.11",
"@types/react": "17.0.37",
"@types/react-dom": "^17.0.9",
"@types/react-icons": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"autoprefixer": "^10.3.7",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "7",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.6.5",
"hardhat-spdx-license-identifier": "^2.0.3",
"husky": "^7.0.2",
"postcss": "^8.3.9",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.5.0",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"tailwindcss": "^2.2.16",
"ts-node": "^10.2.1",
"typechain": "^5.1.2",
"typescript": "4.5.2"
}
}