-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.31 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.31 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
78
{
"name": "timeline-tools",
"version": "0.0.0",
"engines": {
"node": ">20"
},
"scripts": {
"dev": "ng serve -o",
"ng": "ng",
"serve": "ng serve",
"start": "http-server",
"startprod": "ng serve -o --configuration production",
"build": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"e2e": "concurrently -k -s first \"npm run serve\" \"npx playwright test tests/\""
},
"private": true,
"stylelint": {
"rules": {
"block-opening-brace-space-before": "always",
"declaration-block-semicolon-space-before": "never",
"declaration-colon-space-after": "always",
"indentation": 2
}
},
"dependencies": {
"@angular/animations": "20.1.2",
"@angular/cdk": "^20.1.2",
"@angular/common": "20.1.2",
"@angular/compiler": "20.1.2",
"@angular/core": "20.1.2",
"@angular/forms": "20.1.2",
"@angular/material": "^20.1.2",
"@angular/platform-browser": "20.1.2",
"@angular/platform-browser-dynamic": "20.1.2",
"@angular/router": "20.1.2",
"lodash-es": "4.17.23",
"normalize.css": "8.0.1",
"rxjs": "7.8.1",
"stream": "0.0.3",
"timers": "0.1.1",
"ts-md5": "1.3.1",
"tslib": "2.8.1",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.3.18",
"@angular-eslint/builder": "20.1.1",
"@angular-eslint/eslint-plugin": "20.1.1",
"@angular-eslint/eslint-plugin-template": "20.1.1",
"@angular-eslint/schematics": "20.1.1",
"@angular-eslint/template-parser": "20.1.1",
"@angular/cli": "^20.3.18",
"@angular/compiler-cli": "20.1.2",
"@angular/language-service": "20.1.2",
"@playwright/test": "1.56.1",
"@types/jasmine": "5.1.4",
"@types/jquery": "3.5.30",
"@types/lodash-es": "4.17.12",
"@types/node": "24.2.1",
"@typescript-eslint/eslint-plugin": "8.38.0",
"@typescript-eslint/parser": "8.38.0",
"concurrently": "8.2.2",
"eslint": "9.31.0",
"jasmine-core": "5.12.0",
"jasmine-spec-reporter": "7.0.0",
"jquery": "3.7.1",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.8.3"
}
}