-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
51
52
{
"name": "next-and-cypress-example",
"version": "1.0.0",
"description": "Next.js example instrumented for code coverage from Cypress tests",
"main": "index.js",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"e2e": "start-test dev 3000 cy:open",
"cy:open": "cypress open",
"pree2e": "rm -rf .nyc_output coverage .next || true",
"check-coverage-limits": "check-total --min 100"
},
"dependencies": {
"babel-plugin-istanbul": "5.2.0",
"isomorphic-unfetch": "3.1.0",
"next": "9.5.5",
"react": "16.14.0",
"react-dom": "16.14.0"
},
"devDependencies": {
"@cypress/code-coverage": "3.13.11",
"check-code-coverage": "1.10.5",
"cypress": "7.7.0",
"start-server-and-test": "1.15.4"
},
"nyc": {
"exclude": [
"pages/api/__coverage__.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/next-and-cypress-example.git"
},
"keywords": [
"next.js",
"cypress",
"cypress-io",
"cypress-example",
"istanbul",
"code-coverage"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/next-and-cypress-example/issues"
},
"homepage": "https://github.com/bahmutov/next-and-cypress-example#readme"
}