-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 849 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
36
37
{
"name": "delegated-withdrawals",
"version": "0.0.0",
"description": "Monorepo for Delegated Withdrawals",
"main": "index.js",
"repository": "https://github.com/hack-money/delegated-withdrawals.git",
"contributors": [
{
"name": "Tom French",
"url": "https://github.com/tomafrench"
},
{
"name": "Tom Waite",
"url": "https://github.com/thomas-waite"
}
],
"license": "Unlicensed",
"private": true,
"scripts": {
"clean": "rm -rf node_modules && rm -rf ./packages/*/node_modules",
"compile": "tsc -p tsconfig.build.json"
},
"dependencies": {
"lerna": "^3.22.1"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/protocol/",
"**/protocol/**",
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**"
]
}
}