-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
38 lines (38 loc) · 1.13 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
36
37
38
{
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/asyncapi/studio.git"
},
"scripts": {
"lint": "turbo run lint",
"dev": "turbo run dev",
"ds": "turbo run dev --no-cache --continue --filter=design-system...",
"studio": "turbo run dev --no-cache --filter=studio...",
"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...",
"generate:assets": "turbo run generate:assets"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.27.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-security": "^3.0.0",
"eslint-plugin-sonarjs": "^0.25.1",
"turbo": "^1.12.4"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "[email protected]",
"dependencies": {
"@changesets/cli": "^2.26.2"
}
}