-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 4.29 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 4.29 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "company-social-platform",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "ng serve",
"start:client": "ng serve --host 0.0.0.0 --port 4201",
"start:client:sit": "ng serve --configuration sit --host 0.0.0.0 --port 4201",
"start:client:uat": "ng serve --configuration uat --host 0.0.0.0 --port 4201",
"start:client:preprod": "ng serve --configuration preprod --host 0.0.0.0 --port 4201",
"build": "ng build",
"build:sit": "ng build --configuration sit",
"build:uat": "ng build --configuration uat",
"build:preprod": "ng build --configuration preprod",
"build:prod": "ng build --configuration production",
"verify:web": "./scripts/verify-web.sh",
"verify:release-bundle": "./scripts/verify-release-bundle.sh",
"verify:api": "./scripts/verify-api.sh",
"verify:db": "./scripts/verify-db.sh",
"verify:perf": "./scripts/verify-perf.sh",
"verify:e2e": "./scripts/verify-e2e.sh",
"verify:mobile-layout": "./scripts/verify-mobile-layout.sh",
"test:api": "node --test tests/api/api-smoke.test.mjs",
"test:db": "node --test tests/db/db-integrity.test.mjs",
"test:perf": "node scripts/perf-smoke.mjs",
"test:e2e": "playwright test tests/e2e",
"test:e2e:ci": "playwright test tests/e2e/case-detail-attachments-comments.spec.mjs tests/e2e/cases-search-history.spec.mjs tests/e2e/comment-review-moderation.spec.mjs tests/e2e/profile-settings-drilldown.spec.mjs tests/e2e/role-403.spec.mjs --workers=2",
"test:e2e:full": "playwright test tests/e2e",
"test:self-healing": "playwright test tests/e2e/self-healing-showcase.spec.mjs",
"test:mobile": "playwright test tests/e2e/mobile-iphone-visual.spec.mjs tests/e2e/mobile-pixel-visual.spec.mjs",
"test:mobile:smoke": "playwright test tests/e2e/mobile-smoke.spec.mjs --workers=1",
"test:mobile:evidence": "playwright test tests/e2e/mobile-iphone-visual.spec.mjs tests/e2e/mobile-pixel-visual.spec.mjs --workers=1",
"test:mobile:ci": "playwright test tests/e2e/mobile-smoke.spec.mjs --workers=1",
"test:visual": "playwright test tests/e2e/front-end-visual.spec.mjs",
"test:evidence": "playwright test tests/e2e/front-end-visual.spec.mjs tests/e2e/role-matrix.spec.mjs tests/e2e/self-healing-showcase.spec.mjs",
"test:smoke": "playwright test tests/mvp-smoke.spec.mjs",
"report:self-healing": "node scripts/summarize-healing-report.mjs",
"mobile:sync": "./scripts/mobile-sync.sh production both",
"mobile:sync:sit": "./scripts/mobile-sync.sh sit both",
"mobile:sync:uat": "./scripts/mobile-sync.sh uat both",
"mobile:sync:preprod": "./scripts/mobile-sync.sh preprod both",
"ios:build:sit": "./scripts/ios-build.sh sit",
"ios:build:uat": "./scripts/ios-build.sh uat",
"ios:build:preprod": "./scripts/ios-build.sh preprod",
"ios:build:prod": "./scripts/ios-build.sh production",
"ios:package:devicefarm": "./scripts/ios-package-devicefarm.sh production",
"ios:test:sim": "./scripts/ios-test-sim.sh",
"ios:test:devicefarm": "./scripts/ios-test-devicefarm.sh",
"android:build:sit": "./scripts/android-build.sh sit",
"android:build:uat": "./scripts/android-build.sh uat",
"android:build:preprod": "./scripts/android-build.sh preprod",
"android:build:prod": "./scripts/android-build.sh production",
"android:test:emulator": "./scripts/android-test-emulator.sh",
"android:test:devicefarm": "./scripts/android-test-devicefarm.sh",
"android:test:testlab": "./scripts/android-test-testlab.sh",
"start:server": "npm run start --prefix server"
},
"dependencies": {
"@angular/common": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/forms": "^18.2.0",
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/router": "^18.2.0",
"@angular/service-worker": "^18.2.14",
"@capacitor/android": "^8.3.4",
"@capacitor/cli": "^8.3.4",
"@capacitor/core": "^8.3.4",
"@capacitor/ios": "^8.3.4",
"@sentry/angular": "^10.53.1",
"rxjs": "^7.8.1",
"tslib": "^2.6.3",
"zone.js": "^0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.0",
"@angular/cli": "^18.2.0",
"@angular/compiler-cli": "^18.2.0",
"@playwright/test": "^1.60.0",
"autocannon": "^8.0.0",
"pg-mem": "^3.0.14",
"typescript": "^5.5.4"
}
}