mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-29 10:29:27 -06:00
* removing vite-dev-server local dependency from react-vite-ts-configured system test * moving some CRA examples over to use the object api for setup * fixing issue where function API was broken by object API for cy config + devservers * adding deeply nested react import to project-fixtures for cra * finishes cutting over cypress/react for sys tests * chore: adding circle for this feature branch * chore: moving over many vue + vite system tests to use object API instead of function API (#21080) * doing webpack-dev-server cutovers * removing more webpack-dev-server refrences * fixing snapshots * bumping yarn.lock * wip * fix test * fix assertion Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> * feat: removing all references for "fresh" dev servers (webpack-dev-server-fresh and vite-dev-server-fresh) (#21094) Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Zachary Williams <ZachJW34@gmail.com> * chore: add dev-servers as deps to server to be included in the binary (#21091) * fix bad merge * fix next types and webpack-dev-server- resolve Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Zachary Williams <ZachJW34@gmail.com>
46 lines
1.6 KiB
JSON
46 lines
1.6 KiB
JSON
{
|
|
"name": "@cypress/webpack-dev-server",
|
|
"version": "0.0.0-development",
|
|
"description": "Launches Webpack Dev Server for Component Testing",
|
|
"private": true,
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "tsc || echo 'built, with type errors'",
|
|
"build-prod": "yarn build",
|
|
"check-ts": "tsc --noEmit",
|
|
"dev": "tsc --watch",
|
|
"clean": "rimraf dist",
|
|
"cypress:run": "yarn cypress:run-cypress-in-cypress node ../../scripts/cypress run --project . --browser chrome",
|
|
"cypress:run-cypress-in-cypress": "cross-env HTTP_PROXY_TARGET_FOR_ORIGIN_REQUESTS=http://localhost:4455 CYPRESS_REMOTE_DEBUGGING_PORT=6666 TZ=America/New_York",
|
|
"cypress:open": "yarn cypress:run-cypress-in-cypress gulp open --project .",
|
|
"test": "yarn test-unit",
|
|
"test-unit": "mocha -r ts-node/register/transpile-only --config ./test/.mocharc.js"
|
|
},
|
|
"dependencies": {
|
|
"html-webpack-plugin-4": "npm:html-webpack-plugin@^4",
|
|
"html-webpack-plugin-5": "npm:html-webpack-plugin@^5",
|
|
"speed-measure-webpack-plugin": "1.4.2",
|
|
"tslib": "^2.3.1",
|
|
"webpack-dev-server": "^4.7.4",
|
|
"webpack-merge": "^5.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/proxyquire": "^1.3.28",
|
|
"@types/speed-measure-webpack-plugin": "^1.3.4",
|
|
"@types/webpack-dev-server-3": "npm:@types/webpack-dev-server@^3",
|
|
"chai": "^4.3.6",
|
|
"mocha": "^9.2.2",
|
|
"proxyquire": "2.1.3",
|
|
"sinon": "^13.0.1",
|
|
"snap-shot-it": "^7.9.6",
|
|
"ts-node": "^10.2.1",
|
|
"webpack": "npm:webpack@^5",
|
|
"webpack-4": "npm:webpack@^4",
|
|
"webpack-dev-server-3": "npm:webpack-dev-server@^3"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|