-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.65 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
{
"name": "@kwiket/jets-seatmap-angular-lib",
"version": "0.0.2",
"description": "Angular seatmap component library",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Kwiket/jets-seatmap-angular-lib.git"
},
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"ng": "ng",
"generate:env": "node --env-file-if-exists=.env.local -e \"const fs=require('fs');const e=process.env;const cfg='window.__env='+JSON.stringify({API_URL:e.API_URL||'',API_APP_ID:e.API_APP_ID||'',API_KEY:e.API_KEY||'',FLIGHTS_API_URL:e.FLIGHTS_API_URL||''})+';';fs.writeFileSync('projects/seatmap-demo/public/env-config.js',cfg);\"",
"prestart": "npm run generate:env",
"start": "ng serve seatmap-demo --host 0.0.0.0",
"build": "npm run build:lib",
"build:lib": "ng build seatmap-lib && npm run copy:license",
"build:demo": "npm run generate:env && npm run build:lib && ng build seatmap-demo",
"copy:license": "node -e \"require('fs').copyFileSync('LICENSE','dist/seatmap-lib/LICENSE')\"",
"watch": "ng build seatmap-demo --watch --configuration development",
"test": "ng test seatmap-lib",
"test:a11y": "ng test seatmap-lib --watch=false --include=projects/seatmap-lib/src/lib/**/*.a11y.spec.ts",
"e2e": "playwright test --config=projects/seatmap-demo/e2e/playwright.config.ts",
"e2e:ui": "playwright test --config=projects/seatmap-demo/e2e/playwright.config.ts --ui",
"e2e:a11y": "playwright test --config=projects/seatmap-demo/e2e/playwright.config.ts projects/seatmap-demo/e2e/a11y",
"e2e:install": "playwright install --with-deps chromium",
"format": "prettier --write \"projects/seatmap-lib/src/**/*.{ts,html}\"",
"format:check": "prettier --check \"projects/seatmap-lib/src/**/*.{ts,html}\"",
"prepare": "husky"
},
"packageManager": "npm@10.9.4",
"dependencies": {
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/platform-browser": "^21.2.0",
"@angular/router": "^21.2.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"overrides": {
"undici": ">=7.24.0",
"vite": ">=7.3.3",
"picomatch": ">=4.0.4",
"hono": ">=4.12.21",
"qs": ">=6.15.2"
},
"devDependencies": {
"@angular/build": "^21.2.2",
"@angular/cdk": "^21.2.0",
"@angular/cli": "^21.2.2",
"@angular/compiler-cli": "^21.2.0",
"@axe-core/playwright": "^4.10.0",
"@playwright/test": "^1.60.0",
"@types/jest-axe": "^3.5.9",
"husky": "^9.1.7",
"jest-axe": "^9.0.0",
"jsdom": "^28.0.0",
"ng-packagr": "^21.2.0",
"prettier": "^3.8.3",
"typescript": "~5.9.2",
"vitest": "^4.0.8"
}
}