forked from trusttoken/contracts-pre22
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.33 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
{
"name": "truecurrency",
"version": "2.0.0",
"description": "",
"main": "truffle.js",
"directories": {
"test": "./test.sh"
},
"scripts": {
"postinstall": "patch-package",
"coverage": "./coverage.sh",
"flatten": "./flatten-all",
"clean": "rm -rf ./build",
"typecheck": "tsc --noEmit",
"lint:sol": "solhint 'contracts/**/*.sol' && prettylint 'contracts/**/*.sol'",
"lint:js": "eslint '{test,scripts}/**/*.js'",
"lint:ts": "eslint '{test,test-ts,scripts}/**/*.ts' -c .eslintrc.typescript.js",
"lint": "yarn lint:js && yarn lint:sol && yarn lint:ts",
"build:sol": "waffle .waffle.json",
"build:types": "typechain --target ethers-v5 --outDir build/types 'build/*.json'",
"build": "yarn clean && yarn build:sol && yarn build:types && bash ./indexBuild.sh",
"test:js": "./test.sh",
"test:ts": "mocha",
"test": "yarn test:ts && yarn test:js",
"checks": "yarn lint && yarn typecheck && yarn test"
},
"husky": {
"hooks": {}
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@typechain/ethers-v5": "^1.0.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"babel-eslint": "^10.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"ethereum-waffle": "^3.1.2",
"mocha": "^7.1.1",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "2.0.5",
"prettier-plugin-solidity": "1.0.0-alpha.54",
"prettylint": "^1.0.0",
"solhint": "^3.0.0",
"solidity-coverage": "^0.7.0",
"ts-node": "^8.8.2",
"typechain": "^2.0.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@openzeppelin/contracts": "^3.1.0",
"ethers": "5.0.12",
"ganache-cli": "6.8.1",
"ganache-time-traveler": "^1.0.14",
"husky": "^4.2.5",
"openzeppelin-solidity": "^2.4.0",
"truffle": "5.1.11",
"truffle-flattener": "^1.4.3",
"truffle-hdwallet-provider": "0.0.3",
"web3": "1.2.4"
},
"resolutions": {
"ethereum-waffle/**/ganache-core": "^2.13.0",
"@ethereum-waffle/provider/ganache-core": "^2.13.0"
}
}