forked from pointer-gg/solidity-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 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
61
62
63
64
{
"name": "pointer-solidity-tutorial",
"version": "1.3.2",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test-chain": "hardhat run scripts/start.ts",
"deploy-chain": "hardhat run scripts/deploy.ts --network goerli"
},
"dependencies": {
"@ethersproject/providers": "^5.7.2",
"@heroicons/react": "^2.0.13",
"@metamask/providers": "^10.2.1",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@tailwindcss/forms": "^0.5.3",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"hardhat": "^2.12.4",
"nanoid": "^4.0.0",
"next": "^13.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@ethersproject/abi": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.3",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"autoprefixer": "^10.4.0",
"chai": "^4.3.4",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.1.1",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.2",
"postcss": "^8.4.5",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.4"
},
"engines": {
"node": "^18.16.1"
}
}