-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 910 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
{
"scripts": {
"pull:repos": "./scripts/pull-repos.sh",
"start:backend": "./scripts/start-backend.sh",
"stop:backend": "./scripts/stop-backend.sh",
"start:frontend": "./scripts/start-frontend.sh",
"stop:frontend": "./scripts/stop-frontend.sh",
"stop:all": "npm run stop:frontend && npm run stop:backend",
"cy:run": "cypress run --browser chrome --spec ./cypress/e2e/2-tareaCicloFeliz.cy.js",
"e2e": "npm run pull:repos && npm run start:backend && start-server-and-test start:frontend http://localhost:4200 cy:run",
"e2e:ci": "CI=true npm run e2e"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@testing-library/cypress": "^10.0.1",
"angular-http-server": "^1.12.0",
"cypress": "^13.6.0",
"date-fns": "^4.1.0",
"eslint": "^9.15.0",
"eslint-plugin-cypress": "^4.1.0",
"globals": "^15.12.0",
"start-server-and-test": "^2.0.8"
}
}