forked from rzadp/ethers-waffle-workshops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 890 Bytes
/
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
{
"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",
"build": "yarn build:sol && yarn build:ts",
"flatten": "waffle flatten",
"test": "mocha -r ts-node/register/transpile-only 'test/**/*.test.ts'"
},
"devDependencies": {
"@openzeppelin/contracts": "3.2.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": "3.2.1",
"mocha": "8.1.3",
"ts-node": "9.0.0",
"typescript": "4.0.2"
}
}