Files
cypress/packages/network/package.json
T
Ben Kucera f77ec01c18 chore:fix ui-components dependencies, web-config deps for yarn (#6534)
- add needed deps in `ui-components` package
- upgrade `@cypress/webpack-preprocessor`
- refactor some eslint code, remove unused eslint scripts
- rename `build-js` scripts to `build-prod` since they'll only need to run when building for prod / checking for tsc errors
2020-02-26 20:21:23 +00:00

41 lines
1.1 KiB
JSON

{
"name": "@packages/network",
"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-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"test-watch": "yarn test-unit --watch"
},
"dependencies": {
"bluebird": "3.5.3",
"concat-stream": "1.6.2",
"debug": "4.1.1",
"lodash": "4.17.15",
"parse-domain": "bahmutov/parse-domain#fb60bd4",
"proxy-from-env": "1.0.0"
},
"devDependencies": {
"@cypress/debugging-proxy": "2.0.1",
"@packages/https-proxy": "*",
"@packages/socket": "*",
"@packages/ts": "*",
"@types/concat-stream": "1.6.0",
"express": "4.16.4",
"mocha": "6.2.2",
"request": "cypress-io/request#b5af0d1fa47eec97ba980cde90a13e69a2afcd16",
"request-promise": "4.2.4",
"sinon": "7.3.1",
"sinon-chai": "3.3.0",
"typescript": "3.5.3"
},
"files": [
"lib"
],
"types": "./lib/index.ts"
}