-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 996 Bytes
/
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
{
"name": "cypress-coverage",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "webpack",
"pretest": "rm -rf coverage && rm -rf .nyc_output && npm run build",
"test": "concurrently --kill-others \"http-server dist\" \"cypress run\"",
"posttest": "nyc report --reporter=text",
"start": "http-server dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cypress": "^13.16.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.7.2"
},
"devDependencies": {
"@cypress/code-coverage": "^3.14.0",
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"concurrently": "^9.1.2",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"ts-loader": "^9.5.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
},
"volta": {
"node": "18.15.0"
}
}