Files
cypress/npm/react/examples/nextjs/package.json
Lachlan Miller 50cfa91e89 chore: add a script to run all react tests in a single step (#15137)
Co-authored-by: Дмитрий Коваленко <dmitrijkovalenko@Dmitrijs-MacBook-Pro.local>
Co-authored-by: Dmitriy Kovalenko <dmtr.kovalenko@outlook.com>
2021-02-22 19:34:26 -05:00

26 lines
837 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",
"dev": "next",
"only-cove red": "only-covered components/Search.jsx pages/index.js pages/router.js",
"start": "next start",
"test": "node ../../../../scripts/cypress run"
},
"devDependencies": {
"@cypress/react": "file:../../dist",
"@mdx-js/loader": "^1.6.16",
"@next/mdx": "^9.5.3",
"@zeit/next-sass": "^1.0.1",
"check-code-coverage": "1.9.2",
"cypress-circleci-reporter": "0.2.0",
"next": "^9.5.3"
},
"license": "MIT"
}