mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-21 22:49:16 -05:00
196e8f62cc
Co-authored-by: Chris Breiding <chrisbreiding@users.noreply.github.com>
27 lines
895 B
JSON
27 lines
895 B
JSON
{
|
|
"name": "example-nextjs",
|
|
"version": "0.1.0",
|
|
"description": "Fancy Next.js app",
|
|
"scripts": {
|
|
"build": "next build",
|
|
"build:static": "next build && next out",
|
|
"check-coverage": "check-coverage components/Search.jsx && check-coverage pages/index.js && check-coverage pages/router.js",
|
|
"cy:open": "node ../../../../scripts/cypress open --component",
|
|
"dev": "next",
|
|
"only-covered": "only-covered components/Search.jsx pages/index.js pages/router.js",
|
|
"start": "next start",
|
|
"test": "node ../../../../scripts/cypress run --component"
|
|
},
|
|
"devDependencies": {
|
|
"@cypress/react": "file:../../dist",
|
|
"@mdx-js/loader": "^1.6.16",
|
|
"@next/mdx": "10.1.2",
|
|
"@zeit/next-sass": "^1.0.1",
|
|
"check-code-coverage": "1.9.2",
|
|
"mocha-junit-reporter": "^2.0.0",
|
|
"mocha-multi-reporters": "^1.5.1",
|
|
"next": "10.1.2"
|
|
},
|
|
"license": "MIT"
|
|
}
|