forked from rodekruis/IBF-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 2.69 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "IBF-system",
"version": "0.58.0",
"private": true,
"scripts": {
"demo": "npx npm-run-all --print-label --parallel start open",
"start": "npx npm-run-all --print-label --parallel start:ibf-services start:ibf-interfaces",
"start:ibf-services": "npx npm-run-all --print-label --parallel start:ibf-api-service",
"start:ibf-api-service": "npm run start:dev --prefix services/API-service/",
"start:ibf-interfaces": "npx npm-run-all --print-label --parallel start:ibf-dashboard",
"start:ibf-dashboard": "npm start --prefix interfaces/IBF-dashboard/ -- --port 8080",
"install": "npx npm-run-all --print-label install:ibf-services install:ibf-interfaces",
"install:ibf-services": "npx npm-run-all --print-label install:ibf-api-service",
"install:ibf-api-service": "npm install --no-optional --no-audit --no-fund --prefix services/API-service/",
"install:ibf-interfaces": "npx npm-run-all --print-label install:ibf-dashboard",
"install:ibf-dashboard": "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:8080/",
"open:ibf-api-service": "open http://localhost:3000/docs",
"test": "npx npm-run-all --print-label --parallel test:ibf-interfaces test:ibf-services",
"test:ibf-services": "npx npm-run-all --print-label --parallel test:ibf-api-service",
"test:ibf-api-service": "npm test --prefix services/API-service/",
"test:ibf-interfaces": "npx npm-run-all --print-label --parallel test:ibf-dashboard",
"test:ibf-dashboard": "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:ibf-interfaces lint:ibf-services",
"lint:ibf-services": "npx npm-run-all --print-label --parallel lint:ibf-api-service",
"lint:ibf-api-service": "npm run lint --prefix services/API-service/",
"lint:ibf-interfaces": "npx npm-run-all --print-label --parallel lint:ibf-dashboard",
"lint:ibf-dashboard": "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",
"lighthouse": "^7.2.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"puppeteer": "^8.0.0"
},
"pre-commit": "lint"
}