forked from rhlsthrm/typescript-solidity-dev-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "solidity-ts-dev-stack-example",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run compile && npm run typechain",
"compile": "npx buidler compile",
"typechain": "npx buidler compile && typechain --outDir typechain --target ethers 'build/*.json'",
"test": "npx 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",
"devDependencies": {
"@nomiclabs/buidler": "^1.0.1",
"@nomiclabs/buidler-ethers": "^1.0.1",
"@nomiclabs/buidler-etherscan": "^1.0.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"chai": "^4.2.0",
"ethereum-waffle": "^2.1.0",
"ethers": "^4.0.38",
"ts-node": "^8.4.1",
"typechain": "^1.0.3",
"typechain-target-ethers": "^1.0.1",
"typescript": "^3.6.4"
},
"dependencies": {
"@types/chai": "^4.2.4"
}
}