mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-23 15:39:05 -06:00
59 lines
2.1 KiB
JSON
59 lines
2.1 KiB
JSON
{
|
|
"name": "@cypress/webpack-dev-server",
|
|
"version": "0.0.0-development",
|
|
"description": "Launches Webpack Dev Server for Component Testing",
|
|
"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": {
|
|
"find-up": "6.3.0",
|
|
"fs-extra": "9.1.0",
|
|
"html-webpack-plugin-4": "npm:html-webpack-plugin@^4",
|
|
"html-webpack-plugin-5": "npm:html-webpack-plugin@^5",
|
|
"local-pkg": "0.4.1",
|
|
"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",
|
|
"dedent": "^0.7.0",
|
|
"mocha": "^9.2.2",
|
|
"proxyquire": "2.1.3",
|
|
"sinon": "^13.0.1",
|
|
"snap-shot-it": "^7.9.6",
|
|
"ts-node": "^10.9.1",
|
|
"webpack": "npm:webpack@^5",
|
|
"webpack-4": "npm:webpack@^4",
|
|
"webpack-dev-server-3": "npm:webpack-dev-server@^3"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cypress-io/cypress.git"
|
|
},
|
|
"homepage": "https://github.com/cypress-io/cypress/tree/develop/npm/webpack-dev-server#readme",
|
|
"bugs": "https://github.com/cypress-io/cypress/issues/new?template=1-bug-report.md",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|