-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 835 Bytes
/
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
{
"name": "test-automation-framework",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"runner": "cypress open",
"runner:e2e": "cypress open --e2e --browser chrome",
"cy:run": "cypress run",
"lint": "eslint '**/*.{ts, js}' --quiet",
"build": "tsc",
"debug": "cypress open --env debug=true"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": ["Cypress", "TypeScript", "Test Automation"],
"author": "Maryna Nesterenko",
"license": "ISC",
"description": "Test Automation Framework using Cypress and TypeScript",
"devDependencies": {
"@types/node": "^22.10.10",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"cypress": "^14.0.0",
"eslint": "^9.19.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}