-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 3.54 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "localstudio",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "node scripts/dev.mjs",
"build": "npm run build --workspace @localstudio/landing && npm run build --workspace @localstudio/editor && npm run build --workspace @localstudio/joystick && npm run build --workspace @localstudio/docs && node scripts/prepare-pages-artifacts.mjs",
"build:docs": "npm run build --workspace @localstudio/docs",
"build:landing": "npm run build --workspace @localstudio/landing",
"build:editor": "npm run build --workspace @localstudio/editor",
"build:joystick": "npm run build --workspace @localstudio/joystick",
"dev:docs": "npm run dev --workspace @localstudio/docs",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "npm run typecheck --workspace @localstudio/analytics-config && npm run typecheck --workspace @localstudio/app-routes && npm run typecheck --workspace @localstudio/brand && npm run typecheck --workspace @localstudio/presenter-remote && npm run typecheck --workspace @localstudio/landing && npm run typecheck --workspace @localstudio/editor && npm run typecheck --workspace @localstudio/joystick && npm run typecheck --workspace @localstudio/docs",
"test": "npm run test --workspace @localstudio/landing && npm run test --workspace @localstudio/editor && npm run test --workspace @localstudio/joystick && npm run test --workspace @localstudio/docs",
"test:e2e": "playwright test --project=chromium",
"test:e2e:coverage": "npm run test:e2e:coverage:editor && npm run test:e2e:coverage:landing && npm run test:e2e:coverage:public-deck && npm run test:e2e:coverage:webmcp && npm run test:e2e:coverage:joystick",
"test:e2e:coverage:editor": "node scripts/run-e2e-coverage.mjs editor",
"test:e2e:coverage:editor-full": "E2E_SERVER=dev node scripts/run-e2e-coverage.mjs editor-full",
"test:e2e:coverage:joystick": "node scripts/run-e2e-coverage.mjs joystick",
"test:e2e:coverage:landing": "node scripts/run-e2e-coverage.mjs landing",
"test:e2e:coverage:public-deck": "node scripts/run-e2e-coverage.mjs public",
"test:e2e:coverage:webmcp": "node scripts/run-e2e-coverage.mjs webmcp",
"test:e2e:coverage:editor-contracts": "E2E_SERVER=dev node scripts/run-e2e-coverage.mjs editor-contracts",
"test:e2e:coverage:joystick-contracts": "E2E_SERVER=dev node scripts/run-e2e-coverage.mjs joystick-contracts",
"test:e2e:all": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:watch": "npm run test:watch --workspace @localstudio/editor",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json}": [
"prettier --write"
]
},
"overrides": {
"uuid": "11.1.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^10.5.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^16.4.0",
"monocart-coverage-reports": "^2.12.12",
"peer": "^1.0.2",
"prettier": "^3.8.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vite": "^8.1.0",
"vitest": "^4.1.9"
}
}