forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1004 Bytes
/
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
{
"name": "use-react-devtools",
"version": "1.0.0",
"description": "Loading React DevTools Chrome extension",
"scripts": {
"cypress:open": "../../node_modules/.bin/cypress open",
"cypress:run": "../../node_modules/.bin/cypress run",
"cypress:run:chrome": "../../node_modules/.bin/cypress run --browser chrome",
"cypress:run:record": "../../node_modules/.bin/cypress run --record",
"dev": "../../node_modules/.bin/start-test 3000 cypress:open",
"start": "../../node_modules/.bin/react-scripts start",
"test:ci": "../../node_modules/.bin/start-test 3000 cypress:run",
"test:ci:chrome": "../../node_modules/.bin/start-test 3000 cypress:run:chrome",
"test:ci:record": "../../node_modules/.bin/start-test 3000 cypress:run:record"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}