1
0
Fork 0
mirror of https://codeberg.org/beerbrawl/beerbrawl.git synced 2024-09-23 05:40:51 +02:00
beerbrawl/e2e/package.json
Christoph Heiss e6bf9b6aad chore(#18): e2e: add typescript support for e2e tests
Signed-off-by: Christoph Heiss <e11907069@student.tuwien.ac.at>
2024-05-30 18:42:12 +00:00

27 lines
719 B
JSON

{
"name": "sepm-gruppenphase-e2e",
"version": "1.0.0",
"description": "e2e tests",
"main": "index.js",
"private": true,
"dependencies": {
"cypress": "13.7.3",
"cypress-mochawesome-reporter": "3.8.2",
"cypress-multi-reporters": "1.6.4",
"mocha-junit-reporter": "2.2.1"
},
"devDependencies": {
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cypress": "cypress run",
"cypress:open": "cypress open",
"prettier:check": "prettier --check '**/*.{json,html,scss,ts,js}'",
"prettier:fix": "prettier --write '**/*.{json,html,scss,ts,js}'"
},
"author": "Heimo Stranner",
"license": "ISC"
}