-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
35 lines (35 loc) · 1.44 KB
/
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
29
30
31
32
33
34
35
{
"name": "IBF-system",
"version": "0.262.2",
"private": true,
"scripts": {
"start:services": "docker compose up -d",
"start:interface": "npm start --prefix interfaces/IBF-dashboard/ -- --port 4200",
"install:interface": "npm install --no-optional --no-audit --no-fund --prefix interfaces/IBF-dashboard/",
"open": "npx npm-run-all open:ibf-api-service open:ibf-dashboard",
"open:ibf-dashboard": "open http://localhost:4200/",
"open:ibf-api-service": "open http://localhost:4000/docs",
"test:interface": "npm test --prefix interfaces/IBF-dashboard/",
"test:performance": "npm run lighthouse:run",
"test:integration": "npm run cypress:run",
"lint": "npx npm-run-all --print-label --parallel lint:interface lint:services",
"lint:services": "npm run lint --prefix services/API-service/",
"lint:interface": "npm run lint --prefix interfaces/IBF-dashboard/",
"cypress:open": "npx cypress open --config-file=tests/cypress/cypress.json",
"cypress:run": "npx cypress run --record --config-file=tests/cypress/cypress.json",
"lighthouse:run": "lhci autorun --config=tests/lighthouse/lighthouserc.js"
},
"dependencies": {
"github-webhook-handler": "^1.0.0"
},
"devDependencies": {
"@lhci/cli": "^0.7.0",
"cypress": "^6.6.0",
"cypress-wait-until": "^1.7.1",
"lighthouse": "^7.2.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"prettier": "^2.6.2",
"puppeteer": "^8.0.0"
}
}