hongbo-miao/hongbomiao.com

View on GitHub
web-cypress/package.json

Summary

Maintainability
Test Coverage
{
  "name": "hm-cypress",
  "private": true,
  "engines": {
    "node": "22.x"
  },
  "scripts": {
    "tsc": "tsc --noEmit",
    "lint:javascript": "eslint . --ext .js,.ts,.tsx",
    "lint:javascript:fix": "eslint . --ext .js,.ts,.tsx --fix",
    "test:cypress:gui:8080": "cypress open --config-file=cypress.8080.config.ts",
    "test:cypress:gui:5000": "cypress open --config-file=cypress.5000.config.ts",
    "test:cypress:headless:8080": "wait-on http://localhost:8080 && cypress run --config-file=cypress.8080.config.ts",
    "test:cypress:headless:5000": "wait-on http://localhost:5000 && cypress run --config-file=cypress.5000.config.ts"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "8.5.0",
    "@typescript-eslint/parser": "8.5.0",
    "cypress": "13.14.2",
    "eslint": "8.57.1",
    "eslint-config-airbnb-base": "15.0.0",
    "eslint-config-prettier": "9.1.0",
    "eslint-plugin-cypress": "3.5.0",
    "eslint-plugin-import": "2.30.0",
    "eslint-plugin-prettier": "5.2.1",
    "eslint-plugin-react": "7.36.1",
    "prettier": "3.3.3",
    "typescript": "5.6.3",
    "wait-on": "8.0.1"
  }
}