forked from snapshot-labs/sx-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 873 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": "sx-monorepo",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:snapshot-labs/sx-monorepo.git"
},
"scripts": {
"dev": "turbo run dev --filter=!mana --filter=!api --filter=!api-subgraph",
"dev:full": "./scripts/dev-full.sh",
"build": "turbo run build",
"test": "turbo run test",
"test:integration": "turbo run test:integration",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"release": "yarn build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"turbo": "^1.12.3"
},
"engines": {
"node": ">=22.x"
},
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/assemblyscript"
]
}
}