forked from AlphaWallet/stl-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.16 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
{
"name": "stl-contracts",
"version": "2.6.0",
"description": "STL contracts",
"scripts": {
"compile": "hardhat compile",
"coverage": "env COVERAGE=true hardhat coverage",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js": "prettier --loglevel warn --ignore-path .gitignore '**/*.{js,ts}' --check && eslint --ignore-path .gitignore .",
"lint:js:fix": "prettier --loglevel warn --ignore-path .gitignore '**/*.{js,ts}' --write && eslint --ignore-path .gitignore . --fix",
"lint:sol": "prettier --loglevel warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --check && solhint '{contracts,test}/**/*.sol'",
"lint:sol:fix": "prettier --loglevel warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --write",
"clean": "hardhat clean && rimraf build contracts/build",
"test": "hardhat test",
"gas-report": "env ENABLE_GAS_REPORT=true npm run test",
"slither": "npm run clean && slither ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlphaWallet/stl-contracts.git"
},
"author": "STL",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlphaWallet/stl-contracts/issues"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/hardhat-upgrades": "^1.22.0",
"@tokenscript/attestation": "^0.5.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"dotenv": "^16.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^10.2.0",
"prettier": "^2.8.1",
"prettier-plugin-solidity": "^1.1.0",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.0",
"ts-node": "^10.9.1",
"yargs": "^17.6.2"
},
"dependencies": {
"@ethereum-attestation-service/eas-contracts": "^1.3.3",
"@nomicfoundation/hardhat-toolbox-viem": "^2.0.0",
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^5.0.0",
"chai": "^4.3.10",
"hardhat": "^2.19.2",
"typescript": "^5.0.0"
}
}