mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-05 05:59:49 -06:00
* chore: update playwright-webkit from 1.24.2 to 1.56.1 * chore: fix cookies.cy.js tests in webkit by checking for strict domain match first when calling getCookie and falling back to apex domain * misc: add changelog item
289 lines
11 KiB
JSON
289 lines
11 KiB
JSON
{
|
|
"name": "cypress",
|
|
"version": "15.5.0",
|
|
"description": "Cypress is a next generation front end testing tool built for the modern web",
|
|
"private": true,
|
|
"scripts": {
|
|
"binary-build": "cross-env NODE_OPTIONS=--max_old_space_size=8192 node ./scripts/binary.js build",
|
|
"binary-deploy": "node ./scripts/binary.js deploy",
|
|
"binary-deploy-linux": "./scripts/build-linux-binary.sh",
|
|
"binary-ensure": "node ./scripts/binary.js ensure",
|
|
"binary-package": "cross-env NODE_OPTIONS=--max_old_space_size=8192 node ./scripts/binary.js package",
|
|
"binary-purge": "node ./scripts/binary.js purge-version",
|
|
"binary-release": "node ./scripts/binary.js release",
|
|
"binary-smoke-test": "node ./scripts/binary.js smoke",
|
|
"binary-upload": "node ./scripts/binary.js upload",
|
|
"binary-zip": "node ./scripts/binary.js zip",
|
|
"build": "lerna run build --stream && yarn workspace @packages/electron build-binary && lerna run build-cli --stream",
|
|
"build-prod": "lerna run build-prod --stream && node ./cli/scripts/post-build.js && lerna run build-prod --stream --scope",
|
|
"build-v8-snapshot-dev": "node --max-old-space-size=8192 tooling/v8-snapshot/scripts/setup-v8-snapshot-in-cypress.js --env=dev",
|
|
"build-v8-snapshot-prod": "node --max-old-space-size=8192 tooling/v8-snapshot/scripts/setup-v8-snapshot-in-cypress.js",
|
|
"check-binary-on-cdn": "node ./scripts/binary.js checkIfBinaryExistsOnCdn",
|
|
"check-node-version": "node scripts/check-node-version.js",
|
|
"check-terminal": "node scripts/check-terminal.js",
|
|
"check-ts": "yarn lerna run check-ts",
|
|
"clean": "lerna run clean --no-bail || echo 'ok, errors while cleaning'",
|
|
"clean-deps": "find . -depth -name node_modules -type d -exec rimraf {} \\;",
|
|
"clean-untracked-files": "git clean -d -f",
|
|
"codegen": "yarn gulp codegen",
|
|
"cypress:open": "yarn gulp open --dev --global",
|
|
"precypress:open:debug": "yarn ensure-deps",
|
|
"cypress:open:debug": "node ./scripts/debug.js cypress:open",
|
|
"precypress:run": "yarn ensure-deps",
|
|
"cypress:run": "cypress run --dev",
|
|
"cypress:run:ct": "cypress run --component --dev",
|
|
"precypress:run:debug": "yarn ensure-deps",
|
|
"cypress:run:debug": "node ./scripts/debug.js cypress:run",
|
|
"cypress:verify": "cypress verify --dev",
|
|
"dev": "gulp dev",
|
|
"dev-debug": "node ./scripts/debug.js dev",
|
|
"dev:clean": "gulp dev:clean",
|
|
"docker": "./scripts/run-docker-local.sh",
|
|
"docker-dev": "./scripts/run-docker-local.sh dev",
|
|
"ensure-deps": "./scripts/ensure-dependencies.sh",
|
|
"get-next-version": "node scripts/get-next-version.js",
|
|
"gulp:debug": "node --inspect-brk ./node_modules/.bin/gulp",
|
|
"postinstall": "node ./scripts/run-postInstall.js",
|
|
"lint": "lerna run lint --no-bail --concurrency 2",
|
|
"lint:base": "lerna run lint --no-bail",
|
|
"lint:fix": "lerna run lint --no-bail --concurrency 2 --scope=@cypress/{grep,mount-utils,schematic,puppeteer} -- --fix",
|
|
"npm-release": "node scripts/npm-release.js",
|
|
"pack-ci": "./scripts/pack-ci.sh",
|
|
"prepare": "husky install",
|
|
"prepare-release-artifacts": "node ./scripts/prepare-release-artifacts.js",
|
|
"pretest-e2e": "yarn ensure-deps",
|
|
"sanitize:mocha:results": "node ./scripts/sanitize-mocha-results.js",
|
|
"prestart": "yarn ensure-deps",
|
|
"start": "cypress open --dev --global",
|
|
"stop-only": "npx stop-only --skip .cy,.publish,.projects,node_modules,dist,dist-test,fixtures,lib,bower_components,src,__snapshots__,patches --exclude cypress-tests.ts,*only.cy.js",
|
|
"stop-only-all": "yarn stop-only --folder packages",
|
|
"pretest": "yarn ensure-deps",
|
|
"test": "yarn lerna exec yarn test --scope=cypress --scope=@packages/{config,data-context,driver,electron,errors,extension,https-proxy,icons,launcher,net-stubbing,network,packherd-require,proxy,rewriter,scaffold-config,socket,v8-snapshot-require,telemetry,stderr-filtering,types} --scope=@tooling/{electron-mksnapshot,v8-snapshot}",
|
|
"test-debug": "lerna exec yarn test-debug --ignore=@packages/{driver,root,static,web-config}",
|
|
"test-integration": "lerna exec yarn test-integration --ignore=@packages/{driver,root,static,web-config}",
|
|
"test-mocha": "mocha --reporter spec scripts/spec.js",
|
|
"test-npm-package-release-script": "npx lerna exec --scope=@cypress/* -- npx --no-install semantic-release --dry-run",
|
|
"test-scripts": "mocha -r packages/ts/register --reporter spec 'scripts/unit/**/*spec.js'",
|
|
"test-scripts-watch": "yarn test-scripts --watch --watch-extensions 'ts,js'",
|
|
"test-system": "yarn workspace @tooling/system-tests test",
|
|
"pretest-unit": "yarn ensure-deps",
|
|
"test-unit": "lerna exec yarn test-unit --ignore={@packages/{driver,root,static,web-config,net-stubbing,rewriter},@cypress/{webpack-dev-server,eslint-plugin-dev}}",
|
|
"pretest-watch": "yarn ensure-deps",
|
|
"test-watch": "lerna exec yarn test-watch --ignore=@packages/{driver,root,static,web-config}",
|
|
"type-check": "yarn lerna exec yarn type-check --scope=@tooling/system-tests && node scripts/type_check",
|
|
"verify:mocha:results": "node ./scripts/verify-mocha-results.js",
|
|
"watch": "yarn gulp watch"
|
|
},
|
|
"devDependencies": {
|
|
"@aws-sdk/client-s3": "3.485.0",
|
|
"@aws-sdk/credential-providers": "3.53.0",
|
|
"@babel/eslint-parser": "7.28.0",
|
|
"@cypress/request": "^3.0.9",
|
|
"@cypress/request-promise": "^5.0.0",
|
|
"@electron/fuses": "1.8.0",
|
|
"@electron/notarize": "^2.5.0",
|
|
"@fellow/eslint-plugin-coffee": "0.4.13",
|
|
"@graphql-codegen/add": "3.1.0",
|
|
"@graphql-codegen/cli": "2.2.0",
|
|
"@graphql-codegen/plugin-helpers": "2.3.2",
|
|
"@graphql-codegen/typed-document-node": "2.2.8",
|
|
"@graphql-codegen/typescript": "2.4.2",
|
|
"@graphql-codegen/typescript-operations": "2.2.3",
|
|
"@graphql-codegen/typescript-resolvers": "^2.6.4",
|
|
"@graphql-codegen/typescript-urql-graphcache": "2.2.3",
|
|
"@graphql-tools/delegate": "8.2.1",
|
|
"@graphql-tools/utils": "8.2.3",
|
|
"@graphql-tools/wrap": "8.1.1",
|
|
"@npmcli/arborist": "8.0.0",
|
|
"@octokit/auth-app": "6.0.3",
|
|
"@octokit/core": "5.0.2",
|
|
"@percy/cli": "1.27.4",
|
|
"@reach/dialog": "0.10.5",
|
|
"@semantic-release/changelog": "6.0.3",
|
|
"@semantic-release/git": "10.0.1",
|
|
"@types/better-sqlite3": "^7.6.3",
|
|
"@types/bluebird": "3.5.29",
|
|
"@types/chai-enzyme": "0.6.7",
|
|
"@types/debug": "4.1.7",
|
|
"@types/enzyme-adapter-react-16": "1.0.5",
|
|
"@types/fluent-ffmpeg": "^2.1.18",
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/getenv": "^1.0.0",
|
|
"@types/glob": "7.1.1",
|
|
"@types/gulp": "^4.0.9",
|
|
"@types/lodash": "^4.14.168",
|
|
"@types/markdown-it": "12.2.3",
|
|
"@types/mocha": "8.0.3",
|
|
"@types/node": "22.18.7",
|
|
"@types/prismjs": "1.16.0",
|
|
"@types/react": "18.3.12",
|
|
"@types/react-dom": "18.3.1",
|
|
"@types/request-promise": "4.1.45",
|
|
"@types/send": "^0.17.1",
|
|
"@types/sinon-chai": "3.2.12",
|
|
"@types/through2": "^2.0.36",
|
|
"@types/underscore.string": "0.0.38",
|
|
"@typescript-eslint/eslint-plugin": "7.2.0",
|
|
"@typescript-eslint/parser": "7.2.0",
|
|
"@urql/introspection": "^0.3.0",
|
|
"@vitest/coverage-v8": "^3.2.4",
|
|
"ascii-table": "0.0.9",
|
|
"autobarrel": "^1.1.0",
|
|
"bluebird": "3.5.3",
|
|
"bluebird-retry": "0.11.0",
|
|
"bytenode": "1.3.7",
|
|
"chai": "4.5.0",
|
|
"chai-as-promised": "7.1.1",
|
|
"chalk": "2.4.2",
|
|
"check-more-types": "2.24.0",
|
|
"commander": "6.2.1",
|
|
"common-tags": "1.8.0",
|
|
"conventional-recommended-bump": "6.1.0",
|
|
"cross-env": "7.0.3",
|
|
"debug": "^4.3.4",
|
|
"dedent": "^0.7.0",
|
|
"del": "3.0.0",
|
|
"detect-port": "^2.1.0",
|
|
"electron": "37.6.0",
|
|
"electron-builder": "^25.1.8",
|
|
"enzyme-adapter-react-16": "1.12.1",
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-cypress": "3.5.0",
|
|
"eslint-plugin-graphql": "4.0.0",
|
|
"eslint-plugin-import": "2.25.4",
|
|
"eslint-plugin-json-format": "2.0.1",
|
|
"eslint-plugin-mocha": "8.2.0",
|
|
"eslint-plugin-react": "7.22.0",
|
|
"eslint-plugin-react-hooks": "4.2.0",
|
|
"eslint-plugin-vue": "7.18.0",
|
|
"execa": "4.1.0",
|
|
"fast-xml-parser": "^4.5.1",
|
|
"filesize": "10.1.1",
|
|
"fs-extra": "9.1.0",
|
|
"getenv": "^1.0.0",
|
|
"glob": "7.1.6",
|
|
"graphql": "^15.5.1",
|
|
"graphql-executor": "0.0.23",
|
|
"gulp": "4.0.2",
|
|
"gulp-awspublish": "8.0.0",
|
|
"gulp-debug": "4.0.0",
|
|
"gulp-rename": "1.4.0",
|
|
"hasha": "5.2.2",
|
|
"human-interval": "1.0.0",
|
|
"husky": "7.0.2",
|
|
"inquirer": "8.2.4",
|
|
"inquirer-confirm": "2.0.3",
|
|
"lazy-ass": "1.6.0",
|
|
"lerna": "8.1.9",
|
|
"lint-staged": "^16",
|
|
"listr2": "3.8.3",
|
|
"lodash": "^4.17.21",
|
|
"minimist": "1.2.8",
|
|
"mobx": "6.13.6",
|
|
"mobx-react": "9.1.1",
|
|
"mocha": "3.5.3",
|
|
"mocha-banner": "1.1.2",
|
|
"mocha-junit-reporter": "2.2.0",
|
|
"mocha-multi-reporters": "1.1.7",
|
|
"mock-fs": "5.4.0",
|
|
"npm-packlist": "9.0.0",
|
|
"p-defer": "^3.0.0",
|
|
"patch-package": "8.0.0",
|
|
"playwright-webkit": "1.56.1",
|
|
"pluralize": "8.0.0",
|
|
"print-arch": "1.0.0",
|
|
"proxyquire": "2.1.3",
|
|
"react": "18.3.1",
|
|
"react-dom": "18.3.1",
|
|
"rimraf": "6.0.1",
|
|
"semantic-release": "22.0.12",
|
|
"semantic-release-monorepo": "8.0.2",
|
|
"semver": "^7.7.1",
|
|
"shelljs": "0.8.5",
|
|
"sinon": "7.3.2",
|
|
"sinon-chai": "3.7.0",
|
|
"snap-shot-it": "7.9.10",
|
|
"stop-only": "3.4.1",
|
|
"strip-ansi": "6.0.1",
|
|
"tar": "6.2.1",
|
|
"term-to-html": "1.2.0",
|
|
"terminal-banner": "1.1.0",
|
|
"through": "2.3.8",
|
|
"through2": "^4.0.2",
|
|
"tree-kill": "1.2.2",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "5.3.3",
|
|
"vitest": "^3.2.4",
|
|
"yaml": "2.8.0",
|
|
"yarn-deduplicate": "3.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.19.0",
|
|
"yarn": ">=1.22.22"
|
|
},
|
|
"productName": "Cypress",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cypress-io/cypress.git"
|
|
},
|
|
"homepage": "https://cypress.io",
|
|
"bugs": {
|
|
"url": "https://github.com/cypress-io/cypress/issues"
|
|
},
|
|
"keywords": [
|
|
"automation",
|
|
"browser",
|
|
"cypress",
|
|
"cypress.io",
|
|
"e2e",
|
|
"end-to-end",
|
|
"integration",
|
|
"component",
|
|
"mocks",
|
|
"runner",
|
|
"spies",
|
|
"stubs",
|
|
"test",
|
|
"testing"
|
|
],
|
|
"workspaces": {
|
|
"packages": [
|
|
"cli",
|
|
"packages/*",
|
|
"npm/*",
|
|
"tooling/*",
|
|
"system-tests",
|
|
"scripts"
|
|
],
|
|
"nohoist": [
|
|
"**/@wdio/*",
|
|
"**/webpack-preprocessor/babel-loader",
|
|
"**/webpack-preprocessor/**/merge-source-map",
|
|
"**/webpack-preprocessor/**/patch-package",
|
|
"**/webpack-batteries-included-preprocessor/ts-loader",
|
|
"**/jest",
|
|
"**/jest*",
|
|
"**/expect"
|
|
]
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{js,jsx,ts,tsx,json,eslintrc,vue}": "eslint --fix",
|
|
".circleci/*.yml": "circleci config validate"
|
|
},
|
|
"resolutions": {
|
|
"**/@types/cheerio": "0.22.21",
|
|
"**/@types/enzyme": "3.10.5",
|
|
"**/jquery": "3.7.1",
|
|
"**/socket.io-parser": "4.0.5",
|
|
"**/ua-parser-js": "0.7.33",
|
|
"@definitelytyped/typescript-versions": "0.1.9",
|
|
"@types/react": "18.3.12",
|
|
"browserify-sign": "4.2.2",
|
|
"devtools-protocol": "0.0.1528500",
|
|
"node-abi": "4.9.0",
|
|
"vue-template-compiler": "2.6.12"
|
|
},
|
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
}
|