-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.37 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
{
"name": "eth-dapp-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "bun install --cwd next-dapp",
"compile": "hardhat compile",
"test": "hardhat test",
"local": "hardhat node",
"deploy": "hardhat run scripts/deploy.ts --network chain",
"deploy:local": "hardhat run scripts/deploy.ts --network localhost",
"dev": "bun run --cwd next-dapp dev",
"build": "bun run --cwd next-dapp build",
"start": "bun run --cwd next-dapp start",
"lint": "bun run --cwd next-dapp lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" && bun run --cwd next-dapp format",
"format:check": "bun run --cwd next-dapp format:check"
},
"dependencies": {
"@ethsign/sign-protocol-evm": "^1.1.1",
"@google/generative-ai": "^0.21.0",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@pushprotocol/restapi": "^1.7.29",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.4.5",
"eslint-config-prettier": "^9.1.0",
"ethers": "^6.13.4",
"hardhat": "^2.22.15",
"prettier": "^3.3.3",
"react-confetti": "^6.1.0",
"typechain": "^8.3.2",
"sonner": "^1.7.0"
}
}