-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.32 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.32 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
38
39
40
41
{
"name": "cypress-e2e-tests",
"version": "2.0.0",
"description": "Cypress E2E Tests for Open edX applications",
"repository": "https://github.com/openedx/cypress-e2e-tests",
"scripts": {
"cy:verify": "cypress verify",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:smoke": "cypress run --env grepTags=@smoke",
"cy:run:regression": "cypress run --env grepTags=@regression",
"lint": "eslint --ext .js --ext .jsx .",
"lint:fix": "eslint --ext .js --ext .jsx . --fix",
"precommit": "npm run lint"
},
"dependencies": {
"@cypress/grep": "^4.1.0",
"@edx/eslint-config": "^2.0.0",
"cypress-failed-log": "^2.5.0",
"cypress-file-upload": "^4.1.1",
"cypress-mochawesome-reporter": "^4.0.0",
"cypress-wait-until": "^3.0.1",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-cypress": "^2.6.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"googleapis": "^148.0.0",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^5.0.0",
"mochawesome-report-generator": "^6.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"cypress": "^15.5.0"
}
}