-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.83 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
79
80
81
82
83
{
"name": "dres-frontend",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"pbuild": "ng build --configuration production --output-path=build/dist",
"test": "ng test",
"e2e": "ng e2e",
"lint:ts": "eslint --ext \".ts\" --ignore-path .gitignore",
"lint:style": "stylelint \"**/*.{css,scss,sass,html}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check --config .prettierrc.json --ignore-unkown .",
"lint": "yarn lint:ts && yarn lint:style && yarn lint:prettier",
"lintfix": "prettier --write --list-different --ignore-unknown . && yarn lint:ts --fix",
"prepare": "cd .. && husky install frontend/.husky",
"postinstall": "cd .. && husky install frontend/.husky"
},
"lint-staged": {
"*.ts": "eslint --cache"
},
"private": true,
"dependencies": {
"@angular/animations": "20.3.19",
"@angular/cdk": "20.2.14",
"@angular/common": "20.3.19",
"@angular/compiler": "20.3.19",
"@angular/core": "20.3.19",
"@angular/forms": "20.3.19",
"@angular/material": "20.2.14",
"@angular/platform-browser": "20.3.19",
"@angular/platform-browser-dynamic": "20.3.19",
"@angular/router": "20.3.19",
"angularx-qrcode": "20.0.0",
"apexcharts": "3.x",
"ng-apexcharts": "1.x",
"ngx-color-picker": "^14.0.0",
"rxjs": "7.x",
"tslib": "2.x",
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "20.3.25",
"@angular-eslint/builder": "15.x",
"@angular-eslint/eslint-plugin": "18",
"@angular-eslint/eslint-plugin-template": "18",
"@angular-eslint/schematics": "18",
"@angular-eslint/template-parser": "18",
"@angular/cli": "20.3.25",
"@angular/compiler-cli": "20.3.19",
"@angular/language-service": "20.3.19",
"@types/jasmine": "3.6.x",
"@types/jasminewd2": "2.0.x",
"@types/node": "12.11.x",
"@typescript-eslint/eslint-plugin": "5.17.x",
"@typescript-eslint/parser": "5.17.x",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jasmine-core": "3.8.x",
"jasmine-spec-reporter": "5.0.x",
"karma": "6.3.x",
"karma-chrome-launcher": "3.1.x",
"karma-coverage-istanbul-reporter": "3.0.x",
"karma-jasmine": "4.0.x",
"karma-jasmine-html-reporter": "1.5.x",
"lint-staged": "^12.3.7",
"prettier": "2.6.2",
"prettier-eslint": "^14.0.1",
"protractor": "7.0.x",
"stylelint": "^15.10.1",
"stylelint-config-html": "^1.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-scss": "^1.0.0-security",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"ts-node": "8.3.x",
"typescript": "5.8.3"
},
"packageManager": "yarn@3.2.0"
}