-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 849 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 849 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
{
"name": "0xchan-backend",
"version": "1.0.0",
"main": "index.js",
"author": "Anonymous",
"license": "MIT",
"devDependencies": {
"@nomiclabs/buidler": "^1.3.8",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.1.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@typechain/ethers-v5": "^0.0.2",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.20",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.1",
"ethers": "^5.0.5",
"mocha": "^8.0.1",
"ts-node": "^8.10.2",
"typechain": "^2.0.0",
"typechain-target-ethers": "^1.0.4",
"typescript": "^3.9.6"
},
"scripts": {
"build": "npx buidler compile && typechain --target=ethers-v5 \"./artifacts/*.json\"",
"test": "npx buidler test"
}
}