generated from dev-protocol/template-repos-ts-sol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.85 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
{
"name": "@devprotocol/sbt-tokens",
"version": "1.0.0",
"description": "Repository containing code of the SBT tokens.",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"pretest": "yarn generate",
"generate": "hardhat compile",
"pregenerate": "yarn clean",
"lint": "yarn lint:eslint && yarn lint:solhint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts --fix",
"lint:solhint": "solhint --fix --max-warnings 0 \"contracts/**/*.sol\"",
"lint:format": "prettier --write '**/*.{sol,ts,json,md,yml}'",
"build": "tsc -p tsconfig.build.json",
"prebuild": "yarn generate",
"clean": "del 'artifacts'",
"prepare": "husky install",
"deploy:polygonMumbai": "npx hardhat run scripts/deploy.ts --network polygonMumbai"
},
"author": "Dev Protocol",
"license": "MPL-2.0",
"devDependencies": {
"@devprotocol/util-contracts": "^3.3.0",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@nomiclabs/hardhat-waffle": "2.0.6",
"@openzeppelin/contracts": "4.8.2",
"@openzeppelin/hardhat-upgrades": "1.28.0",
"@types/chai": "4.3.11",
"@types/dotenv": "8.2.0",
"@types/mocha": "10.0.6",
"@types/node": "20.11.16",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"chai": "4.4.1",
"del-cli": "5.1.0",
"dotenv": "16.4.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-xo": "0.43.1",
"eslint-config-xo-typescript": "1.0.1",
"ethereum-waffle": "4.0.10",
"ethers": "5.7.2",
"hardhat": "2.19.5",
"husky": "8.0.3",
"mocha": "10.2.0",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.3.1",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^4.4.2",
"@typechain/ethers-v5": "^11.0.0",
"@typechain/hardhat": "^7.0.0",
"solhint": "^4.0.0",
"typechain": "^8.0.0"
}
}