-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.18 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
{
"name": "amboss-cypress-demo",
"version": "1.0.0",
"description": "An AMBOSSian Cypress Demo",
"license": "ISC",
"scripts": {
"format": "prettier --write .",
"lint": "eslint **/*.ts",
"lint:fix": "eslint **/*.ts --fix",
"cy:clear": "cypress cache clear",
"cy:build": "docker build -t e2e_image .",
"cy:build:nocache": "docker build --no-cache -t e2e_image .",
"cy:explore": "docker run -it --entrypoint sh --rm e2e_image",
"cy:run": "docker run --shm-size=2gb --rm -v $(pwd)/cypress/videos:/cypress/videos -v $(pwd)/cypress/screenshots:/cypress/screenshots e2e_image cypress.json",
"cy:open": "cypress open --config-file cypress.json"
},
"dependencies": {
"typescript": "^4.1.3",
"cypress": "^6.3.0"
},
"devDependencies": {
"@types/babel__core": "^7.1.12",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.21",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"prettier": "^2.2.1"
}
}