-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.56 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.56 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "strive",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0 ",
"start:local": "ng serve --configuration=local",
"build": "ng build",
"build:github": "ng build --configuration=github-pages",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:coverage": "ng test --code-coverage",
"test:ci": "ng test --watch=false --browsers=ChromeHeadlessCustom --code-coverage",
"test:single": "ng test --include",
"lint:ts": "ng lint --fix",
"lint:styles": "stylelint \"**/*.scss\" --fix",
"lint": "npm run lint:ts && npm run lint:styles",
"format": "prettier --write .",
"prepare": "husky",
"deploy": "npm run build:github",
"generate:icons": "node scripts/generate-pwa-icons.cjs"
},
"type": "module",
"private": true,
"lint-staged": {
"*.{ts,html}": [
"eslint --fix"
],
"**/*.scss": [
"stylelint --fix"
]
},
"dependencies": {
"@angular/animations": "^19.2.14",
"@angular/cdk": "^19.2.19",
"@angular/common": "^19.2.0",
"@angular/compiler": "^19.2.0",
"@angular/core": "^19.2.0",
"@angular/forms": "^19.2.0",
"@angular/platform-browser": "^19.2.0",
"@angular/platform-browser-dynamic": "^19.2.0",
"@angular/router": "^19.2.0",
"@angular/service-worker": "^19.2.0",
"@eslint/js": "^9.33.0",
"@ng-web-apis/common": "^4.12.0",
"@ng-web-apis/mutation-observer": "^4.12.0",
"@ng-web-apis/platform": "^4.12.0",
"@ng-web-apis/resize-observer": "^4.12.0",
"@ng-web-apis/screen-orientation": "^4.12.0",
"@taiga-ui/cdk": "^4.49.0",
"@taiga-ui/core": "^4.49.0",
"@taiga-ui/event-plugins": "^4.6.0",
"@taiga-ui/i18n": "^4.50.0",
"@taiga-ui/icons": "^4.49.0",
"@taiga-ui/kit": "^4.49.0",
"@taiga-ui/polymorpheus": "^4.9.0",
"@taiga-ui/styles": "^4.49.0",
"@tinkoff/ng-polymorpheus": "^4.3.0",
"jwt-decode": "^4.0.0",
"rxjs": "~7.8.0",
"taiga-ui": "^4.49.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.15",
"@angular-eslint/eslint-plugin": "^20.1.1",
"@angular-eslint/eslint-plugin-template": "^20.1.1",
"@angular-eslint/template-parser": "^20.1.1",
"@angular/cli": "^19.2.15",
"@angular/compiler-cli": "^19.2.0",
"@types/jasmine": "~5.1.0",
"@types/telegram-web-app": "^9.0.0",
"angular-eslint": "20.1.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-boundaries": "^5.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.2.2",
"husky": "^9.1.7",
"jasmine-core": "~5.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^16.1.4",
"postcss-scss": "^4.0.9",
"prettier": "^3.6.2",
"sharp": "^0.34.3",
"sharp-cli": "^5.2.0",
"stylelint": "^16.23.1",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-standard": "^39.0.0",
"stylelint-config-standard-scss": "^15.0.1",
"stylelint-order": "^7.0.0",
"stylelint-scss": "^6.12.1",
"typescript": "~5.7.2",
"typescript-eslint": "8.34.1"
},
"optionalDependencies": {
"@esbuild/linux-loong64": "^0.15.10",
"@nx/nx-darwin-arm64": "19.3.0",
"@nx/nx-darwin-x64": "^19.6.5",
"@nx/nx-linux-x64-gnu": "19.3.0",
"@nx/nx-linux-x64-musl": "19.3.0",
"@nx/nx-win32-x64-msvc": "19.3.0",
"@rollup/rollup-linux-x64-gnu": "^4.28.0"
}
}