-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 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
{
"name": "@singularitydao/v1-farming-contracts",
"version": "1.0.2",
"private": true,
"description": "Includes SingularityDAO farming contracts, migrations, tests",
"directories": {
"test": "test"
},
"scripts": {
"package-npm": "node scripts/package-npm.js",
"deploy": "scripts/truffle-migrate",
"compile": "truffle compile",
"test": "truffle test",
"test-develop": "rm -rf build && truffle test --network develop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/singularity-dao/farming-contracts.git"
},
"author": "SingularityDAO",
"license": "MIT",
"bugs": {
"url": "https://github.com/singularity-dao/farming-contracts/issues"
},
"homepage": "https://github.com/singularity-dao/farming-contracts#readme",
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"@openzeppelin/test-helpers": "^0.5.12",
"@truffle/contract": "^4.2.23",
"@truffle/hdwallet-provider": "^1.1.0",
"bignumber.js": "^9.0.1",
"singularitydao-token-contracts": "^1.0.0",
"truffle": "5.4.2",
"truffle-plugin-verify": "^0.5.11"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"eth-gas-reporter": "^0.1.9",
"fs-extra": "^5.0.0",
"moment": "^2.22.2",
"webpack-cli": "^3.0.8",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-util": "^5.2.0"
}
}