Files
cypress/npm/react/examples/visual-sudoku/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

36 lines
921 B
JSON

{
"name": "sudoku",
"version": "1.0.0",
"private": true,
"homepage": "https://raravi.github.io/sudoku",
"license": "MIT",
"author": "Amith Raravi <amith.raravi@gmail.com>",
"scripts": {
"build": "react-scripts build",
"cy:open": "node ../../../../scripts/cypress open",
"docker:run": "docker run -it -v $PWD/../..:/e2e -w /e2e/examples/visual-sudoku cypress/included:4.5.0",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test": "node ../../../../scripts/cypress run"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"@cypress/react": "file:../../dist",
"cypress-circleci-reporter": "0.2.0"
}
}