-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "cypress-c8",
"version": "1.0.0",
"description": "Example cypress project to show how to collect native code coverage and generate reports using c8",
"scripts": {
"build": "node ./build.js",
"start": "serve --no-clipboard",
"test": "cross-env ELECTRON_EXTRA_LAUNCH_ARGS=--remote-debugging-port=8315 cypress run",
"ci": "server-test http://localhost:3000",
"cypress": "cross-env ELECTRON_EXTRA_LAUNCH_ARGS=--remote-debugging-port=8315 cypress open"
},
"keywords": [
"cypress",
"c8",
"chrome",
"electron",
"chrome-debugging-protocol",
"coverage",
"test"
],
"author": "Gianluca Romeo <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chrome-remote-interface": "^0.31.4",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"chrome-remote-interface": "0.31.1",
"cross-env": "^7.0.3",
"cypress": "^9.2.0",
"esbuild": "^0.14.9",
"esbuild-sass-plugin": "^2.0.0",
"istanbul-lib-coverage": "^3.2.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.1.2",
"serve": "^13.0.2",
"start-server-and-test": "^1.14.0",
"typescript": "^4.5.4",
"v8-to-istanbul": "8.1.0"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/material": "^5.2.6",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}