forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
16 lines (16 loc) · 717 Bytes
/
package.json
File metadata and controls
16 lines (16 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "logging-in__jwt",
"version": "1.0.0",
"description": "Example of logging in using JWT",
"scripts": {
"cypress:open": "../../node_modules/.bin/cypress open",
"cypress:run": "../../node_modules/.bin/cypress run",
"cypress:run:record": "../../node_modules/.bin/cypress run --record",
"dev": "../../node_modules/.bin/start-test 8081 cypress:open",
"start": "../../node_modules/.bin/run-p start:server start:app",
"start:app": "../../node_modules/.bin/webpack-dev-server --port 8081",
"start:server": "node server",
"test:ci": "../../node_modules/.bin/start-test 8081 cypress:run",
"test:ci:record": "../../node_modules/.bin/start-test 8081 cypress:run:record"
}
}