forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@cypress/webpack-dev-server",
"version": "0.0.0-development",
"description": "Launches Webpack Dev Server for Component Testing",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build-prod": "tsc",
"test": "node ./test-deps.js",
"test-all": "tsc && mocha -r @packages/ts/register test/**/*.spec.ts test/*.spec.ts --exit",
"watch": "tsc -w"
},
"dependencies": {
"debug": "^4.3.2",
"lodash": "^4.17.21",
"semver": "^7.3.4",
"webpack-merge": "^5.4.0"
},
"devDependencies": {
"@types/webpack": ">=4",
"@types/webpack-dev-server": "^4.0.0",
"chai": "^4.2.0",
"html-webpack-plugin": "4.x",
"mocha": "^8.1.3",
"snap-shot-it": "7.9.3",
"speed-measure-webpack-plugin": "1.4.2",
"typescript": "^4.2.3",
"webpack": "^4.44.2",
"webpack-dev-server": "^4.0.0"
},
"peerDependencies": {
"html-webpack-plugin": ">=4",
"webpack": ">=4",
"webpack-dev-server": ">=3.0.0"
},
"files": [
"dist",
"index-template.html"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/cypress.git"
},
"homepage": "https://github.com/cypress-io/cypress/tree/master/npm/webpack-dev-server#readme",
"bugs": "https://github.com/cypress-io/cypress/issues/new?template=1-bug-report.md",
"publishConfig": {
"access": "public"
}
}