generated from workhard-finance/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.98 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@workhard/utils",
"description": "Template Repository for WHF Fork",
"version": "0.1.8",
"homepage": "https://workhard.finance",
"repository": {
"type": "git",
"url": "https://github.com/workhard-finance/starter"
},
"keywords": [
"fork",
"WHF",
"Work Hard Finance",
"DAO",
"governance",
"token",
"emission",
"voting escrow"
],
"files": [
"contracts",
"dist",
"deployed.json",
"deployed.dev.json"
],
"engines": {
"node": ">=10"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.1.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"chai": "^4.2.0",
"copyfiles": "^2.4.1",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.1",
"ethereumjs-util": "^6.2.0",
"ethers": "^5.3.1",
"hardhat": "^2.1.1",
"hardhat-dependency-compiler": "^1.1.1",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^6.2.2",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"rimraf": "^3.0.0",
"solc": "^0.8.1",
"solidity-coverage": "^0.7.16",
"ts-node": "^9.1.1",
"typechain": "^5.1.1",
"typescript": "^4.1.3"
},
"scripts": {
"build": "yarn compile && yarn tsc",
"lint": "yarn prettier ./test/*.ts --check",
"lint:fix": "yarn prettier ./test/*.ts --write",
"compile": "yarn hardhat compile",
"test": "yarn hardhat test",
"prepublishOnly": "yarn test",
"prepare": "husky install"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@openzeppelin/contracts": "^4.2.0",
"@workhard/protocol": "^1.0.3",
"node-fetch": "^2.6.1"
},
"lint-staged": {
"{scripts,test,contracts}/**/*.{js,ts,sol}": [
"prettier --write"
]
}
}