qe-fe-automation
Version:
FE test automation framework using cypress
82 lines (81 loc) • 2.52 kB
JSON
{
"name": "qe-fe-automation",
"version": "1.0.0",
"description": "FE test automation framework using cypress",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tripactions/qe-fe-automation.git"
},
"keywords": [
"QE",
"Automation",
"Cypress",
"grep"
],
"author": "QE",
"license": "ISC",
"bugs": {
"url": "https://github.com/tripactions/qe-fe-automation/issues"
},
"homepage": "https://github.com/tripactions/qe-fe-automation#readme",
"scripts": {
"open": "cypress open --env type=base",
"find-deadcode": "ts-prune -e --skip ./cypress/artifacts",
"preinstall": "test -d .husky || (echo 'WARNING: husky is not installed. Please run `npm install husky --save-dev` to enable Git hooks.' && npm install husky --save-dev)",
"prepare": "husky install",
"lint": "eslint . --ext .ts --fix",
"lint:ts": "tsc --noEmit",
"format": "prettier --write '**/*.ts'",
"open:local": "cypress open --config baseUrl=${baseUrl:=http://localhost:4200} --env userUrlPrefix=''",
"start": "node .",
"test": "cypress run --config baseUrl=${baseUrl:=https://staging-prime.navan.com} --env grepTags='@tier1' --browser chrome --headed --spec ./cypress/e2e/**/*.cy.{js,jsx,ts,tsx}"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint",
"prettier --write",
"git add"
]
},
"devDependencies": {
"@cypress/grep": "4.0.1",
"@cypress/webpack-preprocessor": "^5.17.1",
"@faker-js/faker": "6.3.1",
"@shelex/cypress-allure-plugin": "2.40.1",
"@types/lodash.isequal": "^4.5.6",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"ajv": "^8.12.0",
"cy-verify-downloads": "^0.1.15",
"cypress-delete-downloads-folder": "^0.0.2",
"cypress-iframe": "^1.0.1",
"cypress-terminal-report": "5.3.12",
"cypress-visual-regression": "3.0.0",
"eslint": "^8.45.0",
"eslint-plugin-cypress": "^2.15.1",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"pdf2html": "^3.1.0",
"prettier": "3.2.4",
"ts-loader": "^9.4.2",
"ts-prune": "^0.10.3",
"typescript": "4.9.5",
"webpack": "^5.80.0"
},
"dependencies": {
"axios": "^1.3.5",
"axios-retry": "^3.4.0",
"cypress": "12.0.0",
"cypress-cloud": "1.9.6",
"dayjs": "^1.11.9",
"lodash.isequal": "^4.5.0",
"moment": "^2.30.1",
"pdf-parse": "^1.1.1"
}
}