-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "cypress-microsoft-tests",
"version": "1.0.0",
"description": "Testing Microsoft's website with Cypress",
"repository": {
"type" : "git",
"url" : "https://github.com/AsadHasan/cypress-microsoft-tests.git"
},
"scripts": {
"cypress:open": "cypress open",
"check": "prettier --check **/*.ts",
"fix-ts": "eslint --fix **/*.ts",
"test": "cypress run --record",
"cross-browser-tests": "browserstack-cypress run",
"visual-tests": "percy exec -- cypress run",
"local-tests": "./run_docker_tests.sh"
},
"keywords": [
"Cypress",
"Typescript",
"Browserstack",
"Percy"
],
"author": "Asad Hasan",
"license": "MIT",
"devDependencies": {
"@percy/cypress": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"axe-core": "^4.1.1",
"cypress": "^6.0.0",
"cypress-audit": "^0.2.3",
"cypress-axe": "^0.12.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.0",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
}
}