-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.96 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.96 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
{
"name": "springwolf-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build_pages": "ng build",
"lint": "prettier --check \"src/**/*.(js|ts|tsx|json|html|css)\"",
"lint:fix": "prettier --list-different --write \"src/**/*.(js|ts|tsx|json|html|css)\"",
"watch": "ng build --watch",
"test": "jest --no-cache",
"update": "ng update | awk -v re='@[[:alnum:]]' '$0 ~ re {printf $1 \" \"}' | xargs ng update"
},
"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.7",
"@angular/material": "^21.2.9",
"@angular/platform-browser": "^21.2.11",
"@angular/platform-browser-dynamic": "^21.2.11",
"@angular/router": "^21.2.11",
"@fontsource/roboto": "^5.2.10",
"ajv": "^8.20.0",
"material-icons": "^1.13.14",
"ngx-markdown": "^21.3.0",
"prism-code-editor": "^5.1.0",
"rxjs": "^7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^21.2.9",
"@angular/cli": "^21.2.9",
"@angular/compiler-cli": "^21.2.11",
"@asyncapi/parser": "^3.6.0",
"@testing-library/angular": "^19.2.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.17",
"angular-in-memory-web-api": "^0.21.0",
"esbuild": "^0.28.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.4.1",
"jest-junit": "^17.0.0",
"jest-preset-angular": "^16.1.4",
"prettier": "^3.8.3",
"ts-json-schema-generator": "^2.9.0",
"typescript": "^5.9.3"
},
"jest-junit": {
"ancestorSeparator": " › ",
"outputDirectory": "build/test-results",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"prettier": {
"singleQuote": false,
"trailingComma": "es5"
}
}