forked from TypeCellOS/TypeCell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.73 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
{
"name": "root",
"private": true,
"license": "AGPL-3.0",
"devDependencies": {
"@playwright/experimental-ct-react": "^1.36.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"patch-package": "^7.0.0",
"playwright": "^1.36.0"
},
"workspaces": [
"packages/y-penpal",
"packages/util",
"packages/shared",
"packages/shared-test",
"packages/engine",
"packages/parsers",
"packages/frame",
"packages/editor",
"packages/server"
],
"scripts": {
"patch-package": "patch-package",
"postinstall": "patch-package",
"playwright:dev": "npm run playwright:dev --workspaces",
"playwright:preview": "npm run playwright:preview --workspace=packages/editor",
"install-playwright": "npx playwright install --with-deps",
"test": "npm run test --workspaces",
"unittest:vitest": "npm run unittest:vitest --workspaces",
"wip:unittest:vitest:coverage": "vitest run --coverage -r packages/xxx",
"build": "npm run build --workspaces",
"build:react": "npm run build:react --workspace=packages/editor",
"lint": "npm run lint --workspaces",
"start": "npm run start-react",
"start-react": "npm run start --workspace=packages/editor",
"start:preview": "npm run preview --workspace=packages/editor",
"start:server": "npm run dev --workspace=packages/server",
"start:supabase": "npm run start:supabase --workspace=packages/server",
"stop:supabase": "npm run stop:supabase --workspace=packages/server",
"prepublishOnly": "npm run test && npm run build"
},
"overrides": {
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}