-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.47 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": "@intootv/contracts",
"license": "MIT",
"scripts": {
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol",
"test": "yarn truffle test",
"deploy-matic": "truffle deploy --network matic",
"deploy-xdai": "truffle deploy --network xdai"
},
"dependencies": {
"@chainlink/contracts": "^0.0.10",
"@opengsn/gsn": "^2.0.1",
"@openzeppelin/contracts": "^3.3.0",
"@truffle/hdwallet-provider": "^1.0.44",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"assert": "^2.0.0",
"jest": "^26.4.2",
"truffle": "^5.1.44",
"truffle-flattener": "^1.5.0",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3",
"web3": "^1.3.0"
},
"devDependencies": {
"@loopback/build": "^6.2.4",
"dotenv": "^8.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.57",
"solhint": "^3.2.0",
"solhint-plugin-prettier": "^0.0.5",
"truffle-plugin-verify": "^0.4.0"
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix"
],
"*.+(json|css|md)": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "truffle compile",
"pre-push": "yarn prettier:solidity"
}
},
"files": [
"dist"
],
"engines": {
"node": "^14.15.1",
"yarn": "^1.22.4"
},
"jest": {
"testEnvironment": "node"
}
}