-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 835 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
{
"name": "playwright-demo",
"version": "1.0.0",
"description": "Microsoft Playwright Demo with TypeScript",
"scripts": {
"browser:install": "playwright install",
"tsc:compile": "rm -rf ./test-out && tsc --incremental -p tsconfig.json && cp -r ./env ./test-out/env",
"test:prod": "yarn tsc:compile && cross-env TEST_ENV=production playwright test --trace on -c test-out",
"report:last-run": "playwright show-report"
},
"author": "Travis Ren",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/node": "^20.11.25",
"cross-env": "^7.0.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@playwright/test": "^1.42.1",
"dotenv": "^16.4.5",
"reflect-metadata": "^0.2.1",
"tsyringe": "^4.8.0"
}
}