Files
cypress/packages/proxy/package.json
Brian Mann c72538d189 Fix lodash dupe dep (#7954)
* blow away yarn.lock

* bump lodash to 4.17.19

* reduce binary size again

* bump @types/node to correct version, fix types

* fix react + react-dom types

* add clean command for .ts conversion to .js files

* fix flaky test
2020-07-11 16:34:23 -04:00

36 lines
883 B
JSON

{
"name": "@packages/proxy",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"build-prod": "tsc --project .",
"clean-deps": "rm -rf node_modules",
"test": "yarn test-unit",
"test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json"
},
"dependencies": {
"bluebird": "3.5.3",
"charset": "1.0.1",
"common-tags": "1.8.0",
"debug": "4.1.1",
"grapheme-splitter": "1.0.4",
"iconv-lite": "0.5.0",
"lodash": "4.17.19",
"pumpify": "1.5.1",
"through": "2.3.8",
"utf8-stream": "0.0.0"
},
"devDependencies": {
"@cypress/request": "2.88.5",
"@cypress/request-promise": "4.2.6",
"@cypress/sinon-chai": "2.9.0",
"@types/express": "4.17.2",
"typescript": "3.5.3"
},
"files": [
"lib"
],
"types": "./lib/index.ts"
}