-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 886 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 886 Bytes
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
{
"name": "shadow-objects-e2e",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"tsc": "pnpm exec tsc",
"run-s": "pnpm exec run-s -s",
"playwright": "pnpm exec playwright",
"vite": "pnpm exec vite",
"dev": "pnpm vite",
"build": "pnpm tsc && pnpm vite build",
"vite:preview": "pnpm vite preview --host",
"preview": "pnpm run-s build vite:preview",
"clean": "pnpm exec rimraf build dist playwright-report test-results",
"test:ui": "pnpm playwright test --ui",
"show-report": "pnpm playwright show-report",
"update": "pnpm dlx npm-check --update",
"test": "pnpm playwright test"
},
"dependencies": {
"@spearwolf/eventize": "^4.0.2",
"@spearwolf/shadow-objects": "workspace:*"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"typescript": "^5.9.3",
"vite": "^5.4.10"
}
}