-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.86 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
{
"name": "@onchain-id/oid-token",
"version": "1.0.0",
"description": "Governance ERC20 token of the ONCHAINID Protocol",
"main": "index.js",
"scripts": {
"build": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"coverage": "npx hardhat coverage",
"deploy": "hardhat deploy:OnchainId deploy:VestingManager",
"lint": "npm run lint:sol && npm run lint:ts && npm run prettier:check",
"lint:fix": "npx prettier --write 'contracts/**/*.sol",
"lint:sol": "solhint --config ./.solhint.json \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"prepare": "husky install",
"prettier:check": "prettier --check --config ./.prettierrc.json \"**/*.{js,json,md,sol,ts}\"",
"test": "npx hardhat test --network hardhat",
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onchain-id/oid-token.git"
},
"author": "Tokeny Solutions",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/onchain-id/oid-token/issues"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"homepage": "https://github.com/onchain-id/oid-token#readme",
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@defi-wonderland/smock": "^2.0.7",
"@ethersproject/abstract-signer": "^5.5.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"@typechain/ethers-v5": "^8.0.2",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.6.8",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"solidity-docgen": "^0.5.16",
"ts-node": "^10.4.0",
"typechain": "^6.0.2",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"commit-msg": "node ./scripts/commit-msg.js $HUSKY_GIT_PARAMS && commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}