-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.18 KB
/
package.json
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "techmely-angular-boilerplate",
"version": "0.0.0",
"private": false,
"scripts": {
"prepare": "npx simple-git-hooks",
"ng": "ng",
"dev": "ng serve",
"dev:host": "ng serve --host 0.0.0.0 --disable-host-check",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:e2e": "cypress open",
"test:headless": "ng test --watch=false --browsers ChromeHeadless",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:staged": "pnpm lint-staged",
"stylelint": "stylelint **/*.{css,pcss,less,scss,sass} --quiet-deprecation-warnings",
"stylelint:fix": "stylelint **/*.{css,pcss,less,scss,sass} --quiet-deprecation-warnings --fix",
"format": "prettier --write ."
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm lint:fix",
"pnpm prettier"
],
"*.{css,pcss,less,scss,sass}": [
"pnpm stylelint:fix",
"pnpm prettier"
]
},
"dependencies": {
"@angular/animations": "^18.1.4",
"@angular/cdk": "^18.1.4",
"@angular/common": "^18.1.4",
"@angular/compiler": "^18.1.4",
"@angular/core": "^18.1.4",
"@angular/forms": "^18.1.4",
"@angular/platform-browser": "^18.1.4",
"@angular/platform-browser-dynamic": "^18.1.4",
"@angular/router": "^18.1.4",
"@taiga-ui/addon-commerce": "^3.89.0",
"@taiga-ui/addon-doc": "^3.89.0",
"@taiga-ui/addon-mobile": "^3.89.0",
"@taiga-ui/addon-table": "^3.89.0",
"@taiga-ui/cdk": "^3.89.0",
"@taiga-ui/core": "^3.89.0",
"@taiga-ui/event-plugins": "^4.0.1",
"@taiga-ui/experimental": "^3.89.0",
"@taiga-ui/i18n": "^3.89.0",
"@taiga-ui/icons": "^3.89.0",
"@taiga-ui/kit": "^3.89.0",
"@taiga-ui/layout": "4.0.0",
"@taiga-ui/legacy": "4.0.0",
"@taiga-ui/styles": "^3.89.0",
"@tinkoff/ng-dompurify": "4.0.0",
"dompurify": "3.1.6",
"rxjs": "~7.8.1",
"tslib": "^2.6.3",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.4",
"@angular-eslint/builder": "18.2.0",
"@angular-eslint/eslint-plugin": "18.2.0",
"@angular-eslint/eslint-plugin-template": "18.2.0",
"@angular-eslint/schematics": "18.2.0",
"@angular-eslint/template-parser": "18.2.0",
"@angular/cli": "~18.1.4",
"@angular/compiler-cli": "^18.1.4",
"@iconify/json": "^2.2.235",
"@types/dompurify": "3.0.5",
"@types/jasmine": "~5.1.4",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"autoprefixer": "^10.4.20",
"cypress": "^13.13.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jasmine-core": "~5.2.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^15.2.8",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.8.1",
"typescript": "~5.5.4"
}
}