forked from OKEAMAH/vested-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "vested-token",
"version": "0.0.1",
"description": "",
"repository": {
"type": "git",
"url": "git@github.com:1inch/vested-token.git"
},
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "4.8.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.2.2",
"@nomiclabs/hardhat-etherscan": "3.1.7",
"@nomiclabs/hardhat-truffle5": "2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "0.5.16",
"chai": "4.3.7",
"dotenv": "16.0.3",
"eslint": "8.36.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-standard": "5.0.0",
"ethers": "5.7.2",
"hardhat": "2.13.0",
"hardhat-deploy": "0.11.25",
"hardhat-gas-reporter": "1.0.9",
"rimraf": "4.4.0",
"solc": "0.8.19",
"solhint": "3.4.1",
"solidity-coverage": "0.8.2"
},
"scripts": {
"clean": "rimraf artifacts cache coverage coverage.json",
"coverage": "hardhat coverage",
"deploy": "hardhat deploy --network",
"lint": "yarn run lint:js && yarn run lint:sol",
"lint:fix": "yarn run lint:js:fix && yarn run lint:sol:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:fix": "solhint --max-warnings 0 \"contracts/**/*.sol\" --fix",
"test": "hardhat test"
}
}