-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.71 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
{
"name": "frontend",
"version": "1.0.0",
"type": "module",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:prod": "ng serve -c production",
"start:dev": "ng serve -c development",
"build:prod": "ng build --configuration=production",
"build:dev": "ng build --configuration=development",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular-devkit/build-angular": "~18.0.1",
"@angular/animations": "~18.0.1",
"@angular/cdk": "^18.0.1",
"@angular/cli": "^18.0.1",
"@angular/common": "~18.0.1",
"@angular/compiler": "~18.0.1",
"@angular/compiler-cli": "~18.0.1",
"@angular/core": "~18.0.1",
"@angular/forms": "~18.0.1",
"@angular/platform-browser": "~18.0.1",
"@angular/platform-browser-dynamic": "~18.0.1",
"@angular/router": "~18.0.1",
"@ng-select/ng-select": "^13.2.0",
"chart.js": "^3.6.0",
"core-js": "^3.19.0",
"jwt-decode": "^3.1.2",
"ngx-markdown": "^18.0.0",
"primeflex": "^3.1.0",
"primeicons": "^5.0.0",
"primeng": "^17.18.0",
"rxjs": "~7.8.1",
"tslib": "^2.3.1",
"zone.js": "~0.14.6"
},
"devDependencies": {
"@angular/language-service": "~18.0.1",
"@types/jasmine": "~5.1.9",
"@types/jasminewd2": "^2.0.10",
"@types/node": "20.12.13",
"codelyzer": "^6.0.2",
"jasmine-core": "~4.0.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"protractor": "~7.0.0",
"ts-node": "~10.9.2",
"tslint": "~6.1.0",
"typescript": "~5.4.5"
}
}