-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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": "ethers-waffle-workshops",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/rzadp/ethers-waffle-workshops.git",
"private": true,
"dependencies": {},
"scripts": {
"clean": "rm -r ./{build,dist,flatten}",
"build:sol": "waffle waffle.config.json",
"build:ts": "tsc --noEmit",
"build": "yarn build:sol && yarn build:ts",
"flatten": "waffle flatten",
"test": "mocha 'test/**/*.test.ts'",
"start-ganache": "ts-node -r ts-node/register/transpile-only ./src/start-ganache.ts"
},
"devDependencies": {
"@ethersproject/abi": "^5.0.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/providers": "^5.0.0",
"@openzeppelin/contracts": "4.4.2",
"@typechain/ethers-v5": "^10.0.0",
"@types/chai": "4.2.12",
"@types/mocha": "8.0.3",
"@typescript-eslint/eslint-plugin": "4.1.0",
"@typescript-eslint/parser": "4.1.0",
"chai": "4.2.0",
"eslint": "7.8.1",
"eslint-plugin-import": "2.22.0",
"ethereum-waffle": "4.0.0-alpha.26",
"ethers": "^5.6.1",
"ganache": "^7.0.4",
"mocha": "8.1.3",
"solc": "^0.8.12",
"ts-node": "9.0.0",
"typechain": "^8.0.0",
"typescript": "4.6.2"
}
}