forked from writer/writer-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (47 loc) · 1.91 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "Streamsync",
"version": "1.0.0",
"description": "",
"workspaces": [
"src/ui",
"tests/e2e",
"docs"
],
"engines": {
"node": "20.x.x",
"npm": "10.x.x"
},
"scripts": {
"build": "npm run ui:build && npm run apps:build && npm run ui:codegen && npm run docs:codegen && npm run docs:build",
"test": "npm run --if-present -ws test",
"lint": "npm run --if-present -ws lint",
"dev": "npm run -w streamsync-ui dev",
"storybook": "npm run -w streamsync-ui storybook",
"storybook.build": "npm run -w streamsync-ui storybook.build",
"custom.dev": "npm run -w streamsync-ui dev",
"cli:test": "pytest tests -o log_cli=true ",
"cli:lint": "mypy ./src/streamsync --exclude app_templates/* && ruff check",
"cli:build": "npm run ui:codegen",
"ui:codegen": "npm run -w streamsync-ui codegen",
"ui:dev": "npm run -w streamsync-ui dev",
"ui:build": "npm run -w streamsync-ui build",
"ui:preview": "npm run -w streamsync-ui preview",
"ui:custom.build": "npm run -w streamsync-ui custom.build",
"ui:lint": "npm run -w streamsync-ui lint",
"ui:lint:ci": "npm run -w streamsync-ui lint:ci",
"docs:codegen": "npm run -w streamsync-docs codegen",
"docs:dev": "npm run -w streamsync-docs dev",
"docs:build": "npm run -w streamsync-docs build",
"docs:preview": "npm run -w streamsync-docs preview",
"docs:test": "npm run -w streamsync-docs test",
"e2e": "npm run -w streamsync-e2e e2e",
"e2e:setup": "npm run -w streamsync-e2e e2e:setup",
"e2e:ui": "npm run -w streamsync-e2e e2e:ui",
"e2e:ci": "npm run -w streamsync-e2e e2e:ci",
"e2e:firefox": "npm run -w streamsync-e2e e2e:firefox",
"e2e:chromium": "npm run -w streamsync-e2e e2e:chromium",
"e2e:webkit": "npm run -w streamsync-e2e e2e:webkit",
"apps:build": "cp -R ./apps/hello ./src/streamsync/app_templates/ && cp -R ./apps/default ./src/streamsync/app_templates/",
"codegen": "npm run ui:codegen && npm run docs:codegen"
}
}