-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 1.98 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
{
"name": "demo-next-typescript-hardhat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "npx prettier --write 'contracts/**/*.sol'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@trpc/client": "^9.16.0",
"@trpc/next": "^9.16.0",
"@trpc/server": "^9.16.0",
"@walletconnect/web3-provider": "^1.7.0",
"axios": "^0.24.0",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-scripts": "^5.0.0",
"tsconfig-paths": "^3.12.0",
"walletlink": "^2.3.0",
"web3modal": "^1.9.4"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.4.1",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.4.9",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "17.0.1",
"@types/react": "17.0.37",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^8.5.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-storybook": "^0.5.5",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.8.0",
"hardhat-gas-reporter": "^1.0.6",
"ipfs-http-client": "^55.0.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"solidity-coverage": "^0.7.17",
"tailwindcss": "^3.0.7",
"ts-node": "^10.4.0",
"typescript": "4.5.4"
}
}