-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 815 Bytes
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
{
"name": "type-truffle-check",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate-types": "npx typechain --target=truffle-v5 'build/contracts/*.json'",
"postinstall": "npx truffle compile && npm run generate-types"
},
"author": "",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^4.9.0",
"@truffle/hdwallet-provider": "^2.1.15",
"ethers": "^6.8.0"
},
"devDependencies": {
"@typechain/truffle-v5": "^8.0.7",
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.9",
"truffle": "^5.11.5",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typescript": "^5.2.2"
}
}