-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 4.31 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "angular-nx-apps",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"prepare": "husky install",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2020 browser module main",
"start": "nx serve",
"mini-social:frontend": "nx run mini-social-frontend:serve",
"mini-social:backend": "nx run mini-social-backend:serve",
"build": "cross-env NODE_ENV=production nx build && npm run gzip",
"test": "nx test",
"lint": "nx lint",
"lint:all": "nx run-many --all --target=lint",
"stylelint": "stylelint **/*{.css,.scss}",
"stylelint:fix": "stylelint **/*{.css,.scss} --fix",
"lint:fix": "nx lint --fix",
"gzip": "gzipper compress --verbose ./dist",
"analyze": "nx build --stats-json && webpack-bundle-analyzer ./dist/apps/sandbox/stats.json"
},
"private": true,
"dependencies": {
"@angular/animations": "14.2.9",
"@angular/cdk": "14.2.6",
"@angular/common": "14.2.9",
"@angular/compiler": "14.2.9",
"@angular/core": "14.2.9",
"@angular/forms": "14.2.9",
"@angular/material": "14.2.6",
"@angular/platform-browser": "14.2.9",
"@angular/platform-browser-dynamic": "14.2.9",
"@angular/router": "14.2.9",
"@ng-web-apis/common": "^2.0.0",
"@ngneat/until-destroy": "^9.2.1",
"@ngrx/component-store": "~14.0.0",
"@ngrx/effects": "^14.0.1",
"@ngrx/entity": "~14.0.0",
"@ngrx/router-store": "^14.0.1",
"@ngrx/store": "^14.0.1",
"@nrwl/angular": "15.0.12",
"@taiga-ui/cdk": "^2.53.0",
"@taiga-ui/core": "^2.53.0",
"@taiga-ui/icons": "^2.53.0",
"@taiga-ui/kit": "^2.53.0",
"express": "^4.18.1",
"normalize.css": "^8.0.1",
"primeicons": "^5.0.0",
"primeng": "^14.0.0-rc.1",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^14.0.0",
"@angular-devkit/build-angular": "14.2.8",
"@angular-eslint/eslint-plugin": "14.0.4",
"@angular-eslint/eslint-plugin-template": "14.0.4",
"@angular-eslint/template-parser": "14.0.4",
"@angular/cli": "~14.2.0",
"@angular/compiler-cli": "14.2.9",
"@angular/language-service": "14.2.9",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-angular": "^17.0.3",
"@ngrx/eslint-plugin": "^14.0.1",
"@ngrx/schematics": "~14.0.0",
"@ngrx/store-devtools": "~14.0.0",
"@nrwl/cli": "15.0.12",
"@nrwl/cypress": "15.0.12",
"@nrwl/eslint-plugin-nx": "15.0.12",
"@nrwl/express": "15.0.12",
"@nrwl/jest": "15.0.12",
"@nrwl/js": "15.0.12",
"@nrwl/linter": "15.0.12",
"@nrwl/node": "15.0.12",
"@nrwl/nx-cloud": "15.0.2",
"@nrwl/workspace": "15.0.12",
"@types/express": "4.17.13",
"@types/jest": "28.1.1",
"@types/node": "18.7.1",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"autoprefixer": "^10.4.12",
"bulma": "^0.9.4",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cypress": "^9.1.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.1",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-ngrx": "^2.1.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-rxjs": "^5.0.2",
"eslint-plugin-rxjs-angular": "^2.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"gzipper": "^7.1.0",
"husky": "^8.0.1",
"jasmine-marbles": "~0.9.1",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"jest-preset-angular": "12.2.2",
"lint-staged": "^13.0.3",
"nx": "15.0.12",
"postcss": "^8.4.18",
"prettier": "^2.6.2",
"stylelint": "^14.13.0",
"stylelint-color-format": "^1.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^9.0.0",
"stylelint-high-performance-animation": "^1.6.0",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.3.0",
"tailwindcss": "^3.1.8",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "4.8.4",
"webpack-bundle-analyzer": "^4.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}