forked from sygnumbank/solidity-base-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.93 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@sygnum/solidity-base-contracts",
"version": "2.2.0",
"description": "Solidity Smart Contract library used across Sygnum.",
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"sygnum"
],
"repository": {
"type": "git",
"url": "[email protected]:sygnum/blockchain-engineering/ethereum/solidity-base-contracts.git"
},
"license": "MIT",
"author": "Sygnum Bank AG - Blockchain Engineering <[email protected]>",
"main": "index.js",
"scripts": {
"coverage": "npx hardhat coverage",
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:solhint",
"lint:eslint": "npx eslint 'test/**/*.js' 'config/**/*.js' truffle-config.js index.js",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"lint:fix": "npm run lint:prettier:fix && npm run lint:eslint:fix && npm run lint:solhint:fix",
"lint:prettier": "npx prettier --check 'contracts/**/*.sol' 'config/**/*.js' 'migrations/**/*.js' 'test/**/*.js'",
"lint:prettier:fix": "npx prettier --write 'contracts/**/*.sol' 'config/**/*.js' 'migrations/**/*.js' 'test/**/*.js'",
"lint:solhint": "npx solhint -w 0 'contracts/**/*.sol'",
"lint:solhint:fix": "npm run lint:solhint -- --fix",
"test": "npx hardhat test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npx eslint --fix"
],
"contracts/**/*.sol": [
"npx solhint --fix -w 0",
"npx prettier --write"
],
"package.json": [
"npx sort-package-json"
]
},
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/upgrades": "^2.8.0",
"@truffle/contract": "^4.5.15",
"ethers": "^5.6.9"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.6",
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@openzeppelin/upgrades": "^2.8.0",
"@truffle/contract": "^4.5.14",
"@truffle/hdwallet-provider": "^2.0.10",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.6.9",
"hardhat": "^2.9.9",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.11.11",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^4.3.8",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"sol2uml": "^2.1.8",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.21",
"truffle": "^5.5.27",
"web3": "^1.7.5"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"@sygnum:registry": "https://gitlab.com/api/v4/projects/15855221/packages/npm/"
}
}