mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
Issue number: N/A --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? <!-- Please describe the current behavior that you are modifying. --> CI is failing for Cypress apps due to https://github.com/cypress-io/cypress/issues/27804#issuecomment-1721476731. ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> - All Cypress test apps have been updated to Cypress 13.2.0 which is not affected by this issue. ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
65 lines
1.8 KiB
JSON
65 lines
1.8 KiB
JSON
{
|
|
"name": "test-app",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@ionic/react": "^6.6.1",
|
|
"@ionic/react-router": "^6.6.1",
|
|
"@types/react": "^17.0.53",
|
|
"@types/react-dom": "^17.0.19",
|
|
"@types/react-router": "^5.1.20",
|
|
"@types/react-router-dom": "^5.3.3",
|
|
"ionicons": "^6.0.4",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-router": "^5.3.4",
|
|
"react-router-dom": "^5.3.4",
|
|
"react-scripts": "^5.0.0",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test --env=jsdom --transformIgnorePatterns 'node_modules/(?!(@ionic/react|@ionic/react-router|@ionic/core|@stencil/core|ionicons)/)'",
|
|
"eject": "react-scripts eject",
|
|
"sync": "sh ./scripts/sync.sh",
|
|
"cypress": "cypress run --headless --browser chrome",
|
|
"cypress.open": "cypress open",
|
|
"e2e": "concurrently \"serve -s build -l 3000\" \"wait-on http-get://localhost:3000 && npm run cypress\" --kill-others --success first"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^5.16.2",
|
|
"@testing-library/react": "^12.1.4",
|
|
"@testing-library/user-event": "^13.5.0",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/node": "^17.0.21",
|
|
"concurrently": "^6.3.0",
|
|
"cypress": "^13.2.0",
|
|
"serve": "^14.0.1",
|
|
"wait-on": "^6.0.0",
|
|
"webpack-cli": "^4.9.1"
|
|
},
|
|
"description": "An Ionic project",
|
|
"engines": {
|
|
"node": ">= 16"
|
|
}
|
|
}
|