-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.99 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
{
"name": "dlx-contracts",
"version": "0.0.1-apha.0",
"description": "This is the the contracts repository for dlx meetup!",
"files": [
"contracts",
"types",
"build"
],
"scripts": {
"deploy:ganache:development": "truffle deploy --network development",
"start:ganache:development": "./scripts/development_ganache.sh",
"pretest": "yarn generate-ts",
"test": "scripts/test.sh",
"pretest:ci": "yarn generate-ts",
"test:ci": "CI=true scripts/test.sh",
"coverage": "SOLIDITY_COVERAGE=true scripts/test.sh",
"coverage:ci": "CI=true SOLIDITY_COVERAGE=true scripts/test.sh",
"lint:sol": "solium -d contracts",
"lint:ts": "eslint \"test/**/*.ts\"",
"lint": "yarn lint:sol && yarn lint:ts",
"generate-ts": "truffle compile && typechain --target truffle --outDir types/truffle-contracts './build/contracts/*.json'",
"prepublish": "truffle compile && yarn generate-ts"
},
"keywords": [],
"author": "dlx",
"license": "GPL-3.0-only",
"dependencies": {
"@openzeppelin/contracts": "3.0.1"
},
"devDependencies": {
"@openzeppelin/test-helpers": "0.5.6",
"@truffle/hdwallet-provider": "1.0.35",
"@types/chai": "4.2.11",
"@types/node": "14.0.11",
"@typescript-eslint/eslint-plugin": "3.1.0",
"@typescript-eslint/parser": "3.1.0",
"bignumber.js": "9.0.0",
"chai": "4.2.0",
"dotenv": "8.2.0",
"eslint": "7.2.0",
"eth-gas-reporter": "0.2.17",
"ethlint": "1.2.5",
"ganache-cli": "6.9.1",
"solidity-coverage": "0.7.5",
"truffle": "5.1.29",
"truffle-typings": "1.0.8",
"ts-node": "8.10.2",
"typechain": "^2.0.0",
"typechain-target-truffle": "1.0.2",
"typescript": "3.9.5"
},
"resolutions": {
"minimist": "^1.2.3"
},
"lint-staged": {
"*.ts": [
"eslint"
]
}
}