-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 1.57 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
{
"name": "akropolis-savings-pool",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/akropolisio/savings-pool.git",
"author": "Pavel Rubin <[email protected]>",
"license": "MIT",
"scripts": {
"ganache": "npx ganache-cli --gasLimit 0xfffffffffff -e 10000000 --port 8545",
"generate-types": "npx truffle compile --all && typechain --target=truffle-v5 \"build/contracts/*.json\"",
"generate-abi": "npx truffle compile --all && npx truffle-abi -o ./abi",
"generate-artifacts": "npx truffle compile --all && npx truffle-abi -o ./abi && typechain --target=truffle-v5 \"build/contracts/*.json\"",
"postinstall": "npm run generate-artifacts"
},
"dependencies": {
"@openzeppelin/cli": "^2.8.2",
"@openzeppelin/contracts-ethereum-package": "2.5.0",
"@openzeppelin/upgrades": "^2.8.0",
"@types/bn.js": "^4.11.6",
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"@types/web3": "^1.2.2",
"dotenv": "^8.2.0",
"truffle-assertions": "^0.9.2"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.6",
"@openzeppelin/truffle-upgrades": "^1.1.0",
"@truffle/hdwallet-provider": "^1.0.38",
"@typechain/truffle-v5": "^2.0.2",
"eth-gas-reporter": "^0.2.17",
"solidity-coverage": "^0.7.9",
"truffle": "^5.1.34",
"truffle-contract-size": "^2.0.0",
"truffle-security": "^1.7.3",
"ts-node": "^8.10.2",
"typechain": "^2.0.0",
"typescript": "^3.9.7"
}
}