-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 947 Bytes
/
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
{
"name": "opyn-options-protocol",
"version": "0.1.0",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"auth": "graph auth https://api.thegraph.com/deploy/ <ACCESS_TOKEN>",
"deploy": "graph deploy aparnakr/opyn --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --access-token <ACCESS_TOKEN>"
},
"husky": {
"hooks": {
"pre-commit": "yarn build && lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx,json,graphql,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.17.1",
"@graphprotocol/graph-ts": "^0.17.0",
"husky": "^4.0.10",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"truffle": "^5.0.4",
"truffle-contract": "^4.0.5",
"truffle-hdwallet-provider": "^1.0.4"
}
}