forked from rhlsthrm/typescript-solidity-dev-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.29 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
{
"name": "solidity-ts-dev-stack-example",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "yarn compile && buidler typechain",
"compile": "buidler compile",
"test": "buidler typechain && buidler test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhlsthrm/solidity-ts-dev-stack-example.git"
},
"author": "rhlsthrm",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhlsthrm/solidity-ts-dev-stack-example/issues"
},
"homepage": "https://github.com/rhlsthrm/solidity-ts-dev-stack-example#readme",
"dependencies": {
"@openzeppelin/contracts": "^3.2.0"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.3.4",
"@nomiclabs/buidler-ethers": "^1.3.3",
"@nomiclabs/buidler-waffle": "^1.3.3",
"@typechain/ethers-v4": "^1.0.0",
"@typechain/truffle-v4": "^2.0.2",
"@typechain/truffle-v5": "^2.0.2",
"@typechain/web3-v1": "^1.0.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.5",
"buidler-typechain": "0.1.1",
"chai": "^4.2.0",
"ethereum-waffle": "^2.5.1",
"ethers": "^4.0.47",
"solidity-coverage": "^0.7.5",
"ts-generator": "0.0.8",
"ts-node": "^8.10.1",
"typechain": "^2.0.0",
"typescript": "^3.9.3"
}
}