-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.27 KB
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
32
33
34
35
36
37
{
"version": "0.0.1",
"name": "surveyjs.io.tests",
"scripts": {
"site:ci": "npx playwright test --project=site",
"site:ui": "npx playwright test --project=site --ui",
"examples:ci": "npx playwright test --project=examples",
"examples:ui": "npx playwright test --ui --project=examples",
"pre-push-check": "npm run lint",
"lint": "eslint ./**/*.spec.ts --quiet",
"prepare": "husky install",
"postinstall": "playwright install chromium",
"site:vrt:ci": "testcafe chrome:headless ./site/V2-VRT-TestCafe/ --screenshots ./ --native-automation --selector-timeout 1500 --reporter spec,xunit:report.xml --browser-init-timeout 420000 --page-request-timeout 168000"
},
"dependencies": {
"@playwright/test": "1.60.0",
"devextreme-screenshot-comparer": "^2.0.16",
"minimist": "^1.2.6",
"playwright": "1.60.0",
"puppeteer": "22.13.1",
"testcafe": "3.3.0",
"testcafe-reporter-xunit": "^2.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-cli": "^1.1.1",
"eslint-plugin-surveyjs": "github:surveyjs/eslint-surveyjs",
"husky": "^8"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push-check"
}
}
}