-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
33 lines (33 loc) · 1.07 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
{
"name": "cypress-e2e-tests",
"version": "1.0.0",
"description": "Cypress E2E Tests for edX applications",
"repository": "https://github.com/openedx/cypress-e2e-tests",
"scripts": {
"cy:verify": "cypress verify",
"cy:openAuthnMFE": "cypress open --env ENVIRONMENT=authenticationMFEStage",
"cy:runAuthnMFE": "cypress run --env ENVIRONMENT=authenticationMFEStage",
"lint": "eslint --ext .js --ext .jsx .",
"lint:fix": "eslint --ext .js --ext .jsx . --fix",
"precommit": "npm run lint"
},
"dependencies": {
"@edx/eslint-config": "^2.0.0",
"cypress": "^9.5.4",
"cypress-failed-log": "^2.5.0",
"cypress-file-upload": "^4.1.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": "42.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0"
}
}