-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
87 lines (87 loc) · 2.82 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
{
"name": "suricate-frontend",
"version": "2.9.2-next",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test-ci": "ng test --no-watch --no-progress --code-coverage --browsers=ChromeHeadlessNoSandbox",
"lint": "ng lint",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.1",
"@angular/cdk": "^19.1.0",
"@angular/common": "^19.1.1",
"@angular/compiler": "^19.1.1",
"@angular/core": "^19.1.1",
"@angular/forms": "^19.1.1",
"@angular/material": "^19.1.0",
"@angular/platform-browser": "^19.1.1",
"@angular/platform-browser-dynamic": "^19.1.1",
"@angular/router": "^19.1.1",
"@auth0/angular-jwt": "^5.2.0",
"@fortawesome/fontawesome-free": "^6.7.2",
"@katoid/angular-grid-layout": "^3.0.0",
"@ngx-translate/core": "^16.0.4",
"@ngx-translate/http-loader": "^16.0.1",
"@stomp/rx-stomp": "^2.0.0",
"core-js": "^3.40.0",
"html2canvas": "1.4.1",
"jotform-css.js": "^1.0.1",
"jquery": "^3.7.1",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"ngx-color-picker": "^17.0.0",
"rxjs": "7.8.1",
"sockjs-client": "^1.6.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.2",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "^19.1.2",
"@angular/compiler-cli": "^19.1.1",
"@angular/language-service": "^19.1.1",
"@eslint/js": "^9.18.0",
"@types/jasmine": "~5.1.5",
"@types/jasminewd2": "~2.0.13",
"@types/jotform-css.js": "^1.0.4",
"@types/node": "^22.10.7",
"@types/sockjs-client": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"angular-eslint": "^19.0.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jasmine-core": "~5.5.0",
"jasmine-spec-reporter": "~7.0.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",
"lint-staged": "^15.4.1",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"ts-node": "~10.9.2",
"typescript": "~5.7.3",
"typescript-eslint": "^8.20.0"
},
"lint-staged": {
"**/*.{js,mjs,cjs,ts}": "eslint --cache --fix --max-warnings 0 src/main/webapp"
}
}