forked from asyncapi/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.06 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
{
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/asyncapi/studio.git"
},
"scripts": {
"lint": "eslint --ext .tsx,.ts .",
"dev": "turbo run dev",
"ds": "turbo run dev --no-cache --continue --filter=design-system...",
"studio": "turbo run dev --filter=studio...",
"studio-next": "turbo run dev --no-cache --filter=studio-next...",
"clean": "turbo run clean && rm -rf node_modules",
"build": "turbo run build",
"test": "turbo run test",
"changeset": "changeset",
"version-packages": "changeset version",
"publish-packages": "turbo run build && changeset publish",
"build:studio": "turbo run build --no-cache --filter=studio...",
"build:ds": "turbo run build --filter=design-system...",
"build:studio-next": "turbo run build --no-cache --filter=studio-next..."
},
"devDependencies": {
"esbuild": "^0.19.0",
"turbo": "^1.10.12"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "[email protected]",
"dependencies": {
"@changesets/cli": "^2.26.2"
}
}