-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
46
47
48
49
50
51
52
{
"name": "@stakerdao/blend",
"version": "0.2.0",
"description": "BLEND token for Staker DAO",
"main": "src/index.js",
"bin": {
"blend": "bin/staker-blend",
"preinstall": "npx npm-force-resolutions"
},
"private": true,
"scripts": {
"test": "npx mocha --exit --recursive --timeout 30000",
"build": "tsc",
"contractsCompile": "npx oz compile"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ledgerhq/web3-subprovider": "^5.13.1",
"@openzeppelin/cli": "^2.8.1",
"@openzeppelin/contracts": "^2.5.0",
"@openzeppelin/contracts-ethereum-package": "^2.5.0",
"@openzeppelin/upgrades": "^2.8.0",
"@truffle/hdwallet-provider": "^1.1.0",
"@truffle/resolver": "^5.1.9",
"commander": "^5.0.0",
"decompress": "^4.2.1",
"inquirer-path": "^1.0.0-beta5",
"mkdirp": "^0.5.5",
"valid-filename": "^3.1.0",
"web3": "^1.2.6"
},
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.3",
"@openzeppelin/test-helpers": "^0.5.5",
"@truffle/contract": "^4.2.28",
"@types/inquirer": "^6.5.0",
"@types/node": "^14.0.13",
"chai": "^4.2.0",
"chai-bn": "^0.2.1",
"ethereumjs-wallet": "^0.6.3",
"mocha": "^7.1.1",
"npm-force-resolutions": "0.0.3",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
},
"resolutions": {
"decompress": "4.2.1",
"mkdirp@^0.5.0": "0.5.5",
"web3": "1.2.6"
}
}