-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 937 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
39
{
"name": "cypress-coverage",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"cypress": "cypress",
"see-cy-coverage": "open ./cypress-coverage/lcov-report/index.html",
"start": "next start"
},
"dependencies": {
"next": "13.1.2",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"nyc": {
"extends": "./.nycrc.json",
"report-dir": "cypress-coverage",
"reporter": [
"json",
"lcov",
"text-summary"
]
},
"devDependencies": {
"@cypress/browserify-preprocessor": "3.0.2",
"@cypress/code-coverage": "3.10.0",
"@testing-library/cypress": "9.0.0",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/testing-library__cypress": "5.0.9",
"babel-plugin-istanbul": "6.1.1",
"cypress": "12.3.0",
"nyc": "15.1.0",
"typescript": "4.9.4"
}
}