-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.03 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
{
"name": "telewrapped",
"description": "wrapped tokens of teleport protocol contracts.",
"version": "1.0.0",
"main": "index.js",
"workspaces": [
"contracts/evm/*",
"packages/eslint-config"
],
"scripts": {
"node": "npx hardhat node",
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"clean": "shx rm -rf ./artifacts ./cache ./coverage ./src/types ./coverage.json && yarn typechain",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yml --ignore-path ./.eslintignore --ext .js,.ts .",
"test": "hardhat test",
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"hardhat": "^2.21.0",
"husky": "^8.0.3"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@openzeppelin/hardhat-upgrades": "^3.0.5",
"dotenv": "^16.4.5"
}
}