-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.07 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.07 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
{
"name": "@codeveros/ui",
"version": "2.0.0",
"description": "Codeveros Angular UI",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0",
"start.proxy": "ng serve --host 0.0.0.0 --proxy-config proxy.json",
"test": "ng test --code-coverage",
"test-ci": "ng test --no-watch --no-progress --code-coverage",
"checkstyle": "ng lint",
"checkstyle:ci": "npm run checkstyle",
"e2e": "ng e2e",
"build": "ng build",
"build.production": "ng build -c production",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"repository": {
"type": "git",
"url": "https://github.com:Coveros/codeveros.git"
},
"license": "ISC",
"dependencies": {
"@angular/animations": "^20.3.14",
"@angular/cdk": "^20.2.14",
"@angular/common": "^20.3.14",
"@angular/compiler": "^20.3.14",
"@angular/core": "^20.3.14",
"@angular/forms": "^20.3.14",
"@angular/material": "^20.2.14",
"@angular/platform-browser": "^20.3.14",
"@angular/router": "^20.3.14",
"@auth0/angular-jwt": "^5.2.0",
"rxjs": "^7.8.2",
"swagger-ui": "^5.27.0",
"tslib": "^2.8.1",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular/build": "^20.3.13",
"@angular/cli": "^20.3.13",
"@angular/compiler-cli": "^20.3.14",
"@cypress/schematic": "^3.0.0",
"@eslint/js": "^9.33.0",
"@types/jasmine": "^5.1.8",
"@types/swagger-ui": "^5.21.1",
"angular-eslint": "^20.3.0",
"cypress": "^14.5.3",
"eslint": "^9.32.0",
"jasmine-core": "^5.9.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-junit-reporter": "^2.0.1",
"prettier": "^3.6.2",
"puppeteer": "^24.15.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.39.1"
},
"overrides": {
"react-syntax-highlighter": {
"refractor": {
"prismjs": "^1.30.0"
}
}
},
"scarfSettings": {
"enabled": false
}
}