-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 763 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "metronome",
"version": "1.0.0",
"type": "module",
"description": "Web-based metronome application",
"scripts": {
"test": "CI=1 playwright test --project=ui --project=midi --project=timing --project=utils",
"test:all": "CI=1 playwright test",
"test:ui": "CI=1 playwright test --project=ui",
"test:midi": "CI=1 playwright test --project=midi",
"test:timing": "CI=1 playwright test --project=timing",
"test:utils": "CI=1 playwright test --project=utils",
"test:headed": "playwright test --headed",
"test:ui-headed": "playwright test --project=ui --headed",
"serve": "npx serve . -l 8000"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"playwright": "^1.53.2",
"serve": "^14.2.1"
}
}