-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.46 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
{
"name": "e-commerce",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest --detectOpenHandles",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll --detectOpenHandles",
"lint": "ng lint",
"eslint": "eslint \"src/**/*.ts\"",
"eslint:fix": "eslint \"src/**/*.ts\" --fix",
"prettier": "prettier \"src/**/*.{ts,scss,html}\" --check",
"prettier:write": "prettier \"src/**/*.{ts,scss,html}\" --write",
"compodoc:build": "compodoc -p tsconfig.doc.json",
"compodoc:build-and-serve": "compodoc -p tsconfig.doc.json -s",
"compodoc:serve": "compodoc -s",
"prepare": "husky install",
"update": "git pull && npm i"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.0",
"@angular/cdk": "^15.0.0",
"@angular/common": "^15.2.0",
"@angular/compiler": "^15.2.0",
"@angular/core": "^15.2.0",
"@angular/forms": "^15.2.0",
"@angular/platform-browser": "^15.2.0",
"@angular/platform-browser-dynamic": "^15.2.0",
"@angular/router": "^15.2.0",
"@commercetools/platform-sdk": "^4.11.0",
"@commercetools/sdk-client-v2": "^2.2.0",
"@ng-web-apis/universal": "^3.0.3",
"@ngrx/effects": "^15.4.0",
"@ngrx/store": "^15.4.0",
"@ngrx/store-devtools": "^15.4.0",
"@taiga-ui/addon-commerce": "^3.39.1",
"@taiga-ui/addon-mobile": "^3.39.1",
"@taiga-ui/cdk": "^3.39.1",
"@taiga-ui/core": "^3.39.1",
"@taiga-ui/icons": "^3.39.1",
"@taiga-ui/kit": "^3.39.1",
"@taiga-ui/layout": "^3.39.1",
"@taiga-ui/styles": "^3.39.1",
"@tinkoff/ng-dompurify": "3.0.0",
"@tinkoff/ng-polymorpheus": "^4.1.0",
"dompurify": "2.2.9",
"reflect-metadata": "^0.1.13",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.9",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "~15.2.9",
"@angular/compiler-cli": "^15.2.0",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@compodoc/compodoc": "^1.1.21",
"@ng-web-apis/universal": "^3.0.3",
"@ngrx/eslint-plugin": "^15.4.0",
"@ngrx/schematics": "^16.1.0",
"@ngx-env/builder": "^16.1.3",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/dompurify": "2.2.3",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"commitlint": "^17.6.7",
"eslint": "^8.33.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"jest": "^29.6.2",
"jest-preset-angular": "^13.1.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"stylelint": "^15.10.2",
"stylelint-config-clean-order": "^5.0.1",
"stylelint-config-scss": "^1.0.0-security",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^4.0.2",
"typescript": "~4.9.4"
}
}