-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 848 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 848 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
{
"name": "angularnettutorial-playwright",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "cross-env APP_ENV=dev playwright test",
"test:prod": "cross-env APP_ENV=prod playwright test",
"test:ui": "cross-env APP_ENV=dev playwright test --ui",
"test:headed": "cross-env APP_ENV=dev playwright test --headed",
"test:smoke": "cross-env APP_ENV=dev playwright test --project=smoke",
"test:smoke:prod": "cross-env APP_ENV=prod playwright test --project=smoke",
"setup:env": "npx ts-node scripts/fetch-secrets.ts",
"report": "playwright show-report"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@playwright/test": "1.59.1",
"@types/node": "^25.2.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"ts-node": "^10.9.2"
}
}