-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.93 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
{
"name": "uvault",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile",
"clean": "rm -rf cache artifacts build types cache",
"solhint": "solhint 'contracts/**/*.sol'",
"lint": "prettier --write contracts/*.sol contracts/**/*.sol",
"lint:check": "prettier --check contracts/*.sol contracts/**/*.sol",
"test": "echo \"Error: no test specified\" && exit 1",
"test:unit": "npm run typecheck && truffle test test/unit/**/test-*.ts",
"test:integration": "npm run typecheck && truffle test test/integration/test-*.ts",
"types": "typechain --target=truffle-v5 --outDir types 'build/contracts/*.json'",
"typecheck": "tsc --noEmit",
"flat": "truffle-flattener"
},
"dependencies": {
"@openzeppelin/contracts": "3.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stakewithus/uvault.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/stakewithus/uvault/issues"
},
"homepage": "https://github.com/stakewithus/uvault#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@openzeppelin/test-helpers": "^0.5.10",
"@typechain/truffle-v5": "^4.0.1",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.2.16",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"@types/web3": "^1.2.2",
"bn.js": "^5.2.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eth-gas-reporter": "^0.2.22",
"ethers": "^5.1.3",
"ganache-cli": "^6.12.2",
"hardhat": "^2.2.1",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solhint": "^3.3.4",
"truffle": "5.3.3",
"truffle-flattener": "^1.5.0",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.2.4"
}
}