-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.45 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.45 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "efis-editor",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:hmr": "NG_HMR_TEMPLATES=1 ng serve",
"start:prod": "ng build --configuration production && npx http-server -p 4200 -c-1 dist/efis-editor/browser",
"start:prod-ssl": "ng build --configuration production && npx http-server-ssl -S -p 4200 -c-1 dist/efis-editor/browser",
"start:ssr": "ng build && node dist/efis-editor/server/server.mjs",
"build": "ng build",
"build:prod": "ng build --configuration production --base-href /efis-editor/",
"genproto": "npx protoc --proto_path=src/model/proto --plugin=protoc-gen-ts=node_modules/@protobuf-ts/plugin/bin/protoc-gen-ts --ts_out=gen/ts src/model/proto/*.proto",
"genkeys": "[ -f src/environments/dev-keys.ts ] || echo 'export const GDRIVE_CLIENT_ID = '\\''YOUR_ID'\\'';' > src/environments/dev-keys.ts",
"watch": "ng build --watch --configuration development",
"test": "ng test --watch",
"test:headless": "ng test --headless",
"test:quick": "ng test --configuration quick --headless",
"test:coverage": "ng test --configuration coverage --headless --coverage",
"lint": "ng lint",
"format": "prettier --check \"{./*,src/**/*}.{js,json,ts,html,css,scss}\" \"./public/site.webmanifest\"",
"format:fix": "npm run format -- --write",
"spell": "codespell src/",
"spell:fix": "codespell -w -i 3 src/",
"lint:dependabot": "npx -y @bugron/validate-dependabot-yaml@latest",
"lint:actions": "for f in .github/workflows/*.yml; do echo Validating $f && npx @action-validator/cli $f; done",
"prepush": "npm clean-install && npm run genproto && npm run lint && npm run format && npm run spell && npm run lint:dependabot && npm run lint:actions && npm run test:coverage",
"prepush:fix": "npm run format:fix && npm run spell:fix",
"push": "jj bookmark move main --to @- && jj git push -b main"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.2.11",
"@angular/cdk": "^21.2.9",
"@angular/common": "^21.2.11",
"@angular/compiler": "^21.2.11",
"@angular/core": "^21.2.11",
"@angular/forms": "^21.2.11",
"@angular/material": "^21.2.9",
"@angular/platform-browser": "^21.2.11",
"@angular/platform-browser-dynamic": "^21.2.11",
"@angular/platform-server": "^21.2.11",
"@angular/router": "^21.2.11",
"@angular/service-worker": "^21.2.11",
"@angular/ssr": "^21.2.9",
"@ngneat/hotkeys": "^4.1.0",
"@ngneat/until-destroy": "^10.0.0",
"buffer": "^6.0.3",
"buffer-crc32": "^1.0.0",
"escape-string-regexp": "^5.0.0",
"express": "^5.2.1",
"fast-deep-equal": "^3.1.3",
"file-saver": "^2.0.5",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.7",
"mat-icon-button-sizes": "^1.0.6",
"nanotar": "^0.3.0",
"ngx-device-detector": "^11.0.0",
"ngx-file-drop": "^16.0.0",
"ngx-resize-observer": "^3.3.0",
"ngx-spinner": "^21.1.0",
"rxjs": "~7.8.2",
"scroll-into-view-if-needed": "^3.1.0",
"svg2pdf.js": "^2.7.0",
"tslib": "^2.8.1",
"zone.js": "^0.16.1"
},
"devDependencies": {
"@action-validator/cli": "^0.6.0",
"@angular-eslint/schematics": "^21.3.1",
"@angular/build": "^21.2.9",
"@angular/cli": "^21.2.9",
"@angular/compiler-cli": "^21.2.11",
"@eslint/css": "^1.2.0",
"@eslint/js": "^10.0.1",
"@protobuf-ts/plugin": "^2.11.1",
"@testing-library/angular": "^19.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@types/express": "^5.0.6",
"@types/file-saver": "^2.0.7",
"@types/gapi.client.drive-v3": "^0.0.5",
"@types/google.accounts": "^0.0.18",
"@types/node": "^25.6.0",
"@vitest/browser": "^4.1.5",
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/eslint-plugin": "^1.6.16",
"@vitest/ui": "^4.0.18",
"angular-eslint": "21.3.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-depend": "^1.5.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-no-secrets": "^2.3.3",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-rxjs-x": "^1.0.2",
"eslint-plugin-testing-library": "^7.16.2",
"globals": "^17.6.0",
"pdfjs-dist": "^5.7.284",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "~5.9.3",
"typescript-eslint": "8.59.1",
"vitest": "^4.0.18",
"vitest-mock-extended": "^4.0.0"
}
}