-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 965 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 965 Bytes
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
{
"dependencies": {
"axios": "^1.10.0",
"chai": "^5.2.0",
"dotenv": "^17.0.1",
"mocha": "^11.7.1",
"mocha-multi-reporters": "^1.5.1",
"mocha-xunit-reporter": "^2.3.0",
"prettier": "^3.6.2",
"selenium-webdriver": "^4.34.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/axios": "^0.14.4",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.10",
"@types/selenium-webdriver": "^4.1.28",
"allure-js-commons": "^3.3.0",
"allure-mocha": "^3.3.0",
"typescript": "^5.8.3"
},
"scripts": {
"testapi": "yarn mocha --reporter mocha-multi-reporters --reporter-options configFile=api/reports/multi-reporter-config.json -r ts-node/register \"api/src/tests/*.spec.ts\"",
"testui": "yarn mocha --timeout 10000 --reporter mocha-multi-reporters --reporter-options configFile=ui/reports/multi-reporter-config.json -r ts-node/register \"ui/src/tests/*.spec.ts\""
}
}