-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.91 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.91 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
{
"name": "opis-manager",
"version": "0.0.0",
"private": true,
"packageManager": "npm@11.6.2",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"format": "prettier --write \"src/**/*.{ts,html,scss}\"",
"test": "ng test",
"test:coverage": "ng test --coverage"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"dependencies": {
"@angular-slider/ngx-slider": "21.0.0",
"@angular/cdk": "21.0.5",
"@angular/common": "21.0.3",
"@angular/compiler": "21.0.3",
"@angular/core": "21.0.3",
"@angular/forms": "21.0.3",
"@angular/platform-browser": "21.0.3",
"@angular/router": "21.0.3",
"@sgratzl/chartjs-chart-boxplot": "4.4.5",
"chart.js": "4.3.0",
"chartjs-plugin-annotation": "3.1.0",
"gsap": "3.13.0",
"ng2-charts": "8.0.0",
"rxjs": "7.8.0",
"tslib": "2.3.0"
},
"devDependencies": {
"@angular-eslint/builder": "21.0.1",
"@angular-eslint/eslint-plugin": "21.0.1",
"@angular-eslint/eslint-plugin-template": "21.0.1",
"@angular-eslint/schematics": "21.0.1",
"@angular-eslint/template-parser": "21.0.1",
"@angular/build": "21.0.2",
"@angular/cli": "21.0.2",
"@angular/compiler-cli": "21.0.3",
"@typescript-eslint/eslint-plugin": "8.48.1",
"@typescript-eslint/parser": "8.48.1",
"@vitest/coverage-v8": "4.0.17",
"angular-eslint": "21.0.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-unicorn": "62.0.0",
"jsdom": "27.1.0",
"typescript": "5.9.2",
"vite-tsconfig-paths": "6.0.4",
"vitest": "4.0.17"
}
}