-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.59 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
{
"name": "angular-course",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start-with-mock-server": "npm run start & node backend/api-run.js",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test --verbose",
"lint": "ng lint",
"bundle-report": "ng build --configuration development --stats-json && webpack-bundle-analyzer dist/angular-course/stats.json"
},
"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",
"@taiga-ui/addon-charts": "3.35.0",
"@taiga-ui/addon-commerce": "3.35.0",
"@taiga-ui/addon-doc": "^3.52.0",
"@taiga-ui/addon-editor": "3.35.0",
"@taiga-ui/addon-mobile": "3.35.0",
"@taiga-ui/addon-preview": "3.35.0",
"@taiga-ui/addon-table": "3.35.0",
"@taiga-ui/addon-tablebars": "3.35.0",
"@taiga-ui/cdk": "3.35.0",
"@taiga-ui/core": "3.35.0",
"@taiga-ui/icons": "3.35.0",
"@taiga-ui/kit": "3.35.0",
"@taiga-ui/styles": "3.35.0",
"@tinkoff/ng-dompurify": "3.0.0",
"dompurify": "2.2.9",
"lodash": "^4.17.21",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"uuid": "^9.0.1",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-builders/jest": "^16.0.0",
"@angular-devkit/build-angular": "^15.2.6",
"@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.6",
"@angular/compiler-cli": "^15.2.0",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@faker-js/faker": "^8.0.2",
"@ng-web-apis/universal": "^2.1.0",
"@tinkoff/eslint-config": "^1.52.1",
"@tinkoff/eslint-config-angular": "^1.53.2",
"@types/dompurify": "2.2.3",
"@types/jasmine": "~4.3.0",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.200",
"@types/uuid": "^9.0.5",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"babel-jest": "^29.5.0",
"eslint": "^8.33.0",
"jasmine-core": "~4.5.0",
"jest": "^29.5.0",
"json-server": "^0.17.4",
"typescript": "~4.9.4",
"webpack-bundle-analyzer": "^4.9.0"
}
}