-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
101 lines (101 loc) · 3.86 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
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
{
"name": "efis-editor",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:hmr": "NG_HMR_TEMPLATES=1 ng serve",
"start:prod": "ng serve --configuration production",
"start:ssr": "ng build && node dist/efis-editor/server/server.mjs",
"build": "ng build",
"build:prod": "ng build --configuration production --base-href https://rdamazio.github.io/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",
"test:headless": "ng test --watch=false --browsers=ChromeHeadless",
"lint": "ng lint",
"format": "prettier --check \"{./*,src/**}.{js,json,ts,html,css,scss}\"",
"format:fix": "npm run format -- --write",
"spell": "codespell src/",
"spell:fix": "codespell -w -i 3 src/",
"prepush": "npm install && npm run lint && npm run format && npm run spell && npm run test:headless && npx -y @bugron/validate-dependabot-yaml@latest",
"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": "^19.1.3",
"@angular/cdk": "^19.1.1",
"@angular/common": "^19.1.3",
"@angular/compiler": "^19.1.3",
"@angular/core": "^19.1.3",
"@angular/forms": "^19.1.3",
"@angular/material": "^19.1.1",
"@angular/platform-browser": "^19.1.3",
"@angular/platform-browser-dynamic": "^19.1.3",
"@angular/platform-server": "^19.1.3",
"@angular/router": "^19.1.3",
"@angular/ssr": "^19.1.4",
"@ngneat/hotkeys": "^4.0.0",
"@ngneat/until-destroy": "^10.0.0",
"buffer": "^6.0.3",
"buffer-crc32": "^1.0.0",
"escape-string-regexp": "^5.0.0",
"express": "^4.21.2",
"fast-deep-equal": "^3.1.3",
"file-saver": "^2.0.5",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.8.4",
"mat-icon-button-sizes": "^1.0.6",
"ngx-file-drop": "^16.0.0",
"ngx-spinner": "^17.0.0",
"rxjs": "~7.8.1",
"scroll-into-view-if-needed": "^3.1.0",
"svg2pdf.js": "^2.2.4",
"tslib": "^2.8.1",
"uuid": "^11.0.5",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.4",
"@angular-eslint/schematics": "^19.0.2",
"@angular/cli": "^19.1.4",
"@angular/compiler-cli": "^19.1.3",
"@protobuf-ts/plugin": "^2.9.4",
"@testing-library/angular": "^17.3.5",
"@testing-library/jasmine-dom": "^1.3.3",
"@testing-library/user-event": "^14.6.1",
"@types/express": "^5.0.0",
"@types/file-saver": "^2.0.7",
"@types/gapi.client.drive-v3": "^0.0.5",
"@types/google.accounts": "^0.0.15",
"@types/jasmine": "~5.1.4",
"@types/node": "^22.10.10",
"@types/testing-library__jasmine-dom": "^1.3.4",
"@types/uuid": "^10.0.0",
"angular-eslint": "19.0.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-depend": "^0.12.0",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-no-secrets": "^2.1.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-rxjs-x": "^0.6.2",
"eslint-plugin-testing-library": "^7.1.1",
"jasmine-core": "~5.5.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"karma-jasmine-order-reporter": "^1.2.0",
"karma-spec-reporter": "^0.0.36",
"pdfjs-dist": "^4.10.38",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"typescript": "~5.6.3",
"typescript-eslint": "8.21.0"
}
}