-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathpackage.json
33 lines (33 loc) · 917 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
{
"name": "@orca-so/whirlpools-monorepo",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"build": "nx run-many --target build --projects",
"start": "nx run-many --target start --projects",
"test": "nx run-many --target test --projects",
"deploy": "nx run-many --target deploy --projects",
"format": "nx run-many --target format --projects",
"lint": "nx run-many --target lint --projects",
"clean": "nx reset && nx run-many --target clean --projects"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.12",
"@types/node": "^22.12.0",
"nx": "^20.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.3.6",
"vitest": "^3.0.4"
},
"workspaces": [
"programs/*",
"rust-sdk/*",
"ts-sdk/*",
"legacy-sdk/*",
"examples/ts-sdk/*",
"examples/rust-sdk/*",
"docs/*"
]
}