-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 806 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"private": true,
"scripts": {
"prettier-blade": "prettier resources/views/{**,**/**,**/**/**}.blade.php --write",
"test": "php vendor/bin/pest",
"test:parallel": "php vendor/bin/pest --parallel",
"test:browser": "./tests/browser-test.sh",
"test:coverage": "php vendor/bin/pest --coverage",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@shufo/prettier-plugin-blade": "^1.15.0",
"prettier": "^3.6.0"
},
"dependencies": {
"playwright": "^1.58.2"
}
}