mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-19 22:59:16 -05:00
af26fbebe6
Co-authored-by: Jessica Sachs <jess@jessicasachs.io> Co-authored-by: Barthélémy Ledoux <bart@cypress.io> Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Zach Bloomquist <github@chary.us> Co-authored-by: Dmitriy Kovalenko <dmtr.kovalenko@outlook.com> Co-authored-by: ElevateBart <ledouxb@gmail.com> Co-authored-by: Ben Kucera <14625260+Bkucera@users.noreply.github.com>
36 lines
808 B
JSON
36 lines
808 B
JSON
{
|
|
"name": "@cypress/webpack-dev-server",
|
|
"version": "0.0.0-development",
|
|
"description": "Launches Webpack Dev Server for Component Testing",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build-prod": "tsc",
|
|
"test": "tsc && ts-mocha --config ./test/.mocharc.js --exit",
|
|
"watch": "tsc -w"
|
|
},
|
|
"dependencies": {
|
|
"debug": "4.3.2",
|
|
"semver": "^7.3.4",
|
|
"webpack-merge": "^5.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/webpack-dev-server": "^3.11.1",
|
|
"chai": "^4.2.0",
|
|
"mocha": "^8.1.3",
|
|
"ts-mocha": "8.0.0",
|
|
"typescript": "^3.9.7",
|
|
"webpack": "^4.44.2",
|
|
"webpack-dev-server": "^3.11.0"
|
|
},
|
|
"peerDependencies": {
|
|
"html-webpack-plugin": "> 3",
|
|
"webpack": "> 4"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"license": "MIT"
|
|
}
|