-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.53 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
{
"name": "@galtproject/curio-contracts",
"version": "1.0.0",
"description": "Bootstrap for Truffle/Solidity projects",
"directories": {
"test": "test"
},
"devDependencies": {
"@galtproject/eslint-config-galt": "^1.1.0",
"@galtproject/solidity-test-chest": "https://github.com/galtproject/solidity-test-chest#605d332",
"@openzeppelin/test-environment": "^0.1.2",
"@truffle/hdwallet-provider": "^1.0.32",
"chai": "^4.2.0",
"cli-table": "^0.3.1",
"ethlint": "1.2.5",
"ganache-core": "2.8.0",
"lodash": "^4.17.15",
"mocha": "^7.0.1",
"solidity-coverage": "^0.7.5",
"truffle": "5.1.2",
"web3": "1.2.4"
},
"engines": {
"node": "^10.15.3"
},
"repository": "https://github.com/galtproject/whitelisted-crowdsale",
"scripts": {
"test": "mocha --exit --recursive test --timeout 10000",
"ttest": "truffle test --network test",
"compile": "truffle compile",
"deploy": "truffle migrate --network local",
"coverage": "SOLIDITY_COVERAGE=yes scripts/coverage.sh",
"eslint": "eslint .",
"eslint-fix": "eslint . --fix",
"ethlint": "solium --dir contracts"
},
"author": "",
"license": "MIT",
"dependencies": {
"@galtproject/whitelisted-tokensale": "https://github.com/galtproject/whitelisted-tokensale#1403f33",
"@openzeppelin/contract-loader": "^0.6.1",
"@openzeppelin/contracts": "2.5.0",
"@openzeppelin/contracts-ethereum-package": "^2.2.3",
"@openzeppelin/upgrades": "^2.8.0",
"p-iteration": "^1.1.8",
"web3-utils": "^1.2.6"
}
}