-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 792 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "streamkit-e2e",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"format": "../ui/node_modules/.bin/prettier --write . --config ../ui/.prettierrc.json --ignore-path ./.prettierignore",
"format:check": "../ui/node_modules/.bin/prettier --check . --config ../ui/.prettierrc.json --ignore-path ./.prettierignore",
"lint": "bun run typecheck && bun run format:check",
"test": "bun run src/harness/run.ts",
"test:only": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "bun run src/harness/run.ts -- --headed",
"report": "playwright show-report"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0",
"typescript": "~5.9.3"
}
}