-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 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
{
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production",
"build:stats": "ng build --configuration production --stats-json",
"test": "ng test",
"coverage": "rimraf coverage && ng test --coverage",
"format": "prettier . --write --log-level warn",
"format:check": "node scripts/check-prettier.js",
"lint:eslint": "ng lint --cache",
"lint:eslint:fix": "ng lint --fix --cache",
"lint:css": "stylelint \"src/web/**/*.css\" \"src/web/**/*.scss\" --ignore-pattern \"src/web/dist/**/*\" --cache",
"lint": "npm-run-all -c lint:eslint lint:css format:check"
},
"private": true,
"dependencies": {
"@angular/aria": "^21.2.13",
"@angular/cdk": "^21.2.11",
"@angular/common": "^21.2.13",
"@angular/compiler": "^21.2.13",
"@angular/core": "^21.2.13",
"@angular/forms": "^21.2.13",
"@angular/localize": "^21.2.13",
"@angular/platform-browser": "^21.2.13",
"@angular/router": "^21.2.13",
"@handsontable/angular-wrapper": "^17.0.0",
"@ng-bootstrap/ng-bootstrap": "^20.0.0",
"@popperjs/core": "^2.11.8",
"@tinymce/tinymce-angular": "^9.1.1",
"bootstrap": "^5.3.8",
"d3": "^7.8.5",
"handsontable": "^17.0.0",
"moment-timezone": "^0.6.0",
"ng-dynamic-component": "^10.8.2",
"ngx-captcha": "^14.0.0",
"rxjs": "~7.8.2",
"tinymce": "^8.5.1",
"tslib": "^2.8.1",
"zone.js": "~0.16.2"
},
"devDependencies": {
"@angular/build": "^21.2.11",
"@angular/cli": "^21.2.11",
"@angular/compiler-cli": "^21.2.13",
"@eslint/js": "^10.0.1",
"@types/d3": "^7.4.3",
"@vitest/coverage-v8": "^4.1.6",
"@vitest/eslint-plugin": "^1.6.17",
"angular-eslint": "^21.4.0",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"jest-preset-angular": "^16.1.5",
"jsdom": "^29.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"stylelint": "^17.9.1",
"stylelint-config-standard-scss": "^17.0.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.6"
}
}