Files
cypress/packages/proxy/package.json
Bill Glesias cf73b8a1d9 chore: package @packages/network as an independent bundle (#32633)
* chore: refactor network into two packages, network and network-tools. network-tools is expected to be used in simple environments, where network is intended to be used in the node context. additionally, makes these packages bundable and removes the ts-node entrypoint to make ESM possible.

* chore: sync cloud validations after building packages as the network libs are needed

* chore: fix cloud specs

* remove building packages for requiring build step for creating publish artifacts

* update ts-ignores with reasoning and fix cookie bug (though it shouldn't do this by reference

* bump cache

* update pull-request job as well
2025-10-10 13:41:51 -04:00

64 lines
2.1 KiB
JSON

{
"name": "@packages/proxy",
"version": "0.0.0-development",
"private": true,
"main": "index.js",
"scripts": {
"build-prod": "tsc --project .",
"check-ts": "tsc --noEmit && yarn -s tslint",
"clean": "rimraf --glob 'lib/**/*.js'",
"clean-deps": "rimraf node_modules",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
"run-mocha": "mocha -r @packages/ts/register -r test/pretest.ts --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"test": "CYPRESS_INTERNAL_ENV=test yarn run-mocha \"test/integration/*.spec.ts\" \"test/unit/**/*.spec.ts\"",
"test-integration": "CYPRESS_INTERNAL_ENV=test yarn run-mocha \"test/integration/*.spec.ts\"",
"test-unit": "CYPRESS_INTERNAL_ENV=test yarn run-mocha \"test/unit/**/*.spec.ts\"",
"tslint": "tslint --config ../ts/tslint.json --project ."
},
"dependencies": {
"bluebird": "3.5.3",
"chalk": "2.4.2",
"charset": "1.0.1",
"common-tags": "1.8.0",
"debug": "^4.3.4",
"duplexify": "3.7.1",
"grapheme-splitter": "1.0.4",
"iconv-lite": "0.6.2",
"lodash": "^4.17.19",
"p-defer": "3.0.0",
"pumpify": "1.5.1",
"through": "2.3.8",
"utf8-stream": "0.0.0"
},
"devDependencies": {
"@cypress/request": "^3.0.9",
"@cypress/request-promise": "^5.0.0",
"@cypress/sinon-chai": "2.9.1",
"@packages/errors": "0.0.0-development",
"@packages/net-stubbing": "0.0.0-development",
"@packages/network": "0.0.0-development",
"@packages/network-tools": "0.0.0-development",
"@packages/resolve-dist": "0.0.0-development",
"@packages/rewriter": "0.0.0-development",
"@packages/server": "0.0.0-development",
"@packages/telemetry": "0.0.0-development",
"@packages/types": "0.0.0-development",
"@types/express": "4.17.2",
"@types/supertest": "2.0.10",
"devtools-protocol": "0.0.1459876",
"express": "4.21.0",
"supertest": "6.0.1",
"typescript": "~5.4.5"
},
"files": [
"lib"
],
"types": "./lib/index.ts",
"workspaces": {
"nohoist": [
"devtools-protocol"
]
},
"nx": {}
}