-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.9 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": "client",
"version": "0.1.0",
"description": "",
"proxy": "http://localhost:3000",
"scripts": {
"format-check": "npx prettier --check .",
"format-write": "npx prettier --write .",
"jest": "npx jest jest/",
"postman": "newman run postman/collection.json",
"k6": "k6 run k6/load-test.js",
"cucumber": "cucumber-js",
"playwright": "playwright test playwright/",
"playwright:chrome": "playwright test playwright/ --project=chromium",
"playwright:firefox": "playwright test playwright/ --project=firefox",
"playwright:webkit": "playwright test playwright/ --project=webkit",
"cy:open": "npx cypress open",
"cy:run": "npx cypress run",
"cy:run-chrome": "npx cypress run --browser chrome",
"cy:run-firefox": "npx cypress run --browser firefox",
"cy:run-edge": "npx cypress run --browser edge",
"cy:run-electron": "npx cypress run --browser electron",
"selenium:headless": "HEADLESS=true mocha selenium/*/*.js",
"selenium": "mocha selenium/*/*.js",
"k6:pipeline-browser-home": "k6 run 'k6/browser tests/homePagePerformance.js'",
"k6:pipeline-browser-pictures": "k6 run 'k6/browser tests/picturesPagePerformance.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/jrk12b/Javascript-Automation.git"
},
"author": "Justin Kurdila",
"license": "ISC",
"bugs": {
"url": "https://github.com/jrk12b/Javascript-Automation/issues"
},
"homepage": "https://github.com/jrk12b/Javascript-Automationn#readme",
"devDependencies": {
"@cucumber/cucumber": "^10.8.0",
"@cypress-audit/lighthouse": "^1.4.2",
"@playwright/test": "^1.45.3",
"chai": "^5.1.1",
"chromedriver": "^126.0.5",
"cypress": "^13.13.2",
"cypress-audit": "^1.1.0",
"cypress-time-marks": "^1.6.0",
"geckodriver": "^4.4.2",
"jest": "^29.6.2",
"mocha": "^10.7.0",
"newman": "^6.1.3",
"playwright": "^1.45.3",
"postman": "^0.2.0",
"prettier": "^3.3.3",
"selenium-webdriver": "^4.23.0"
}
}