-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
38 lines (38 loc) · 917 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
31
32
33
34
35
36
37
38
{
"name": "@plasmadlt/staking-factory",
"license": "MIT",
"files": [
"build"
],
"engines": {
"node": ">=10"
},
"scripts": {
"precompile": "rimraf ./build/",
"compile": "waffle",
"pretest": "yarn compile",
"test": "mocha 'test/*.ts'",
"lint": "prettier ./test/**/*.ts --check",
"prepublishOnly": "yarn test"
},
"dependencies": {
"@truffle/hdwallet-provider": "^1.1.0",
"dotenv": "^8.2.0",
"openzeppelin-solidity-2.3.0": "npm:[email protected]"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@uniswap/v2-core": "^1.0.1",
"chai": "^4.2.0",
"ethereum-waffle": "^3.1.0",
"ethereumjs-util": "^7.0.5",
"mocha": "^8.1.3",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"solc": "0.5.16",
"truffle-plugin-verify": "^0.5.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}