-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
31 lines (31 loc) · 1.13 KB
/
package.json
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
28
29
30
31
{
"private": true,
"name": "theia-playwright-template",
"version": "1.36.0",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"scripts": {
"prepare": "yarn clean && yarn build && yarn lint",
"clean": "rimraf lib tsconfig.tsbuildinfo",
"build": "tsc --incremental && npx playwright install chromium",
"lint": "eslint -c ./.eslintrc.js --ext .ts ./tests",
"lint:fix": "eslint -c ./.eslintrc.js --ext .ts ./tests --fix",
"ui-tests": "yarn && playwright test",
"ui-tests-report-generate": "allure generate ./allure-results --clean -o allure-results/allure-report",
"ui-tests-report": "yarn ui-tests-report-generate && allure open allure-results/allure-report"
},
"dependencies": {
"@playwright/test": "^1.42.1",
"@theia/playwright": "1.47.1"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.57.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"allure-commandline": "^2.21.0",
"allure-playwright": "^2.1.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"rimraf": "^2.6.1",
"typescript": "~4.5.5"
}
}