-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@idexio/idex-contracts-revelstoke",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "git+https://github.com/idexio/idex-contracts-revelstoke.git"
},
"main": "build/lib/index.js",
"types": "build/lib/index.d.ts",
"scripts": {
"analyze": "slither .",
"build": "yarn build:sol && yarn build:ts",
"build:sol": "truffle compile && yarn generate-types",
"build:ts": "tsc -p .",
"build:clean": "rm -rf build; rm -rf types/truffle-contracts; rm -rf coverage",
"build:coverage": "multi='spec=- json=./coverage/mocha-summary.json' truffle run coverage --file=\"./build/tests/contracts/*.test.js\" && node bin/get-badges.js",
"generate-types": "typechain --target=truffle-v5 'build/contracts/*.json'",
"lint:markdown": "markdownlint README.md",
"prettier": "prettier --write **/*.sol",
"test": "yarn test:contracts",
"test:contracts": "multi='spec=- json=./coverage/mocha-summary.json' truffle test ./build/tests/contracts/*.test.js",
"verify": "truffle run verify"
},
"dependencies": {
"@openzeppelin/test-helpers": "^0.5.5",
"bignumber.js": "^9.0.0",
"chai": "^4.2.0",
"chai-bn": "^0.2.1",
"ethers": "5.0.26",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@openzeppelin/contracts": "3.3.0",
"@truffle/debug-utils": "^4.1.1",
"@typechain/truffle-v5": "4.0.1",
"@types/chai": "^^4.2.14",
"@types/mocha": "^8.2.0",
"@types/uuid": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-chai-expect": "^2.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-truffle": "^0.3.1",
"husky": "^4.3.8",
"markdownlint-cli": "^0.26.0",
"mocha-multi": "^1.1.3",
"prettier": "^2.2.1",
"prettier-eslint": "12.0.0",
"prettier-eslint-cli": "^5.0.0",
"prettier-plugin-solidity": "1.0.0-beta.3",
"solidity-coverage": "^0.7.14",
"truffle": "5.1.63",
"truffle-security": "^1.7.1",
"ts-node": "9.1.1",
"ts-node-dev": "1.1.1",
"typechain": "4.0.1",
"typescript": "4.1.3",
"web3": "1.3.3",
"web3-core": "^1.3.3",
"web3-eth-contract": "^1.2.7",
"web3-utils": "^1.3.3"
},
"husky": {
"hooks": {
"commit-msg": "[[ -n $HUSKY_BYPASS ]] || commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint:markdown && yarn build:clean && yarn build && yarn build:coverage && git add assets/coverage-*.svg && git add assets/tests.svg"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}