forked from HACK-SP-BR/hackathon-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.07 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.07 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
{
"name": "contracts",
"version": "1.0.0",
"repository": "https://github.com/HACK-SP-BR/hackathon-contracts.git",
"license": "MIT",
"scripts": {
"chain": "hardhat node",
"deploy:local": "ENV=local hardhat run scripts/deploy.ts --network app",
"deploy:dev": "ENV=dev hardhat run scripts/deploy.ts --network app",
"deploy:prod": "ENV=prod hardhat run scripts/deploy.ts --network app",
"readme:addresses": "tsx scripts/update-readme-addresses.ts",
"test:local": "ENV=local tsx test/test.ts",
"test:dev": "ENV=dev tsx test/test.ts",
"prepare": "husky"
},
"devDependencies": {
"@nomicfoundation/hardhat-ignition": "^3.1.0",
"@nomicfoundation/hardhat-toolbox-viem": "^5.0.3",
"@types/node": "^25.5.0",
"dotenv": "^16.0.0",
"hardhat": "^3.0.0",
"husky": "^9.1.7",
"ts-node": "^10.9.1",
"tsx": "^4.21.0",
"typescript": "^5.0.0",
"viem": "^2.47.5"
},
"dependencies": {
"@nomicfoundation/hardhat-verify": "^3.0.12",
"@nomicfoundation/hardhat-viem": "^3.0.4",
"chai": "^6.2.2"
},
"type": "module"
}