-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.32 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.32 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
110
111
{
"name": "division-loader",
"version": "0.6.3",
"license": "MIT",
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
},
"scripts": {
"lint": "nx workspace-lint && ng lint",
"release-patch": "standard-version --no-verify --commit-all --release-as patch",
"release-minor": "standard-version --no-verify --commit-all --release-as minor",
"release-major": "standard-version --no-verify --commit-all --release-as major",
"replace:version": "json -I -f libs/apis/src/lib/version.json -e \"this.version='`cat package.json | json version`';\" && git add libs/apis/src/lib/version.json"
},
"standard-version": {
"scripts": {
"postbump": "npm run replace:version"
}
},
"lint-staged": {
"*.ts": [
"eslint"
],
"*.{css,scss,json,json5,md,js,ts}": [
"prettier --write"
]
},
"private": true,
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@angular-devkit/build-angular": "~15.1.0",
"@angular-eslint/eslint-plugin": "~15.0.0",
"@angular-eslint/eslint-plugin-template": "~15.0.0",
"@angular-eslint/template-parser": "~15.0.0",
"@angular/cli": "~15.1.0",
"@angular/compiler-cli": "~15.1.0",
"@angular/language-service": "~15.1.0",
"@commitlint/config-conventional": "^17.4.4",
"@nestjs/schematics": "^9.0.4",
"@nestjs/testing": "^9.3.12",
"@nrwl/angular": "^15.8.7",
"@nrwl/eslint-plugin-nx": "15.7.2",
"@nrwl/jest": "15.7.2",
"@nrwl/linter": "15.7.2",
"@nrwl/nest": "^15.8.7",
"@nrwl/node": "15.7.2",
"@nrwl/webpack": "15.7.2",
"@nrwl/workspace": "15.7.2",
"@types/d3": "^7.4.0",
"@types/express-session": "^1.17.7",
"@types/jest": "28.1.1",
"@types/node": "^18.15.5",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"autoprefixer": "^10.4.14",
"commitlint": "^17.5.0",
"dotenv": "^16.0.3",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"husky": "^8.0.3",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"jest-preset-angular": "~12.2.3",
"json": "^11.0.0",
"lint-staged": "^13.2.0",
"nx": "15.7.2",
"postcss": "^8.4.5",
"prettier": "^2.8.6",
"standard-version": "^9.5.0",
"tailwindcss": "^3.2.7",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.8.2"
},
"dependencies": {
"@angular/animations": "~15.1.0",
"@angular/cdk": "^15.1.0",
"@angular/common": "~15.1.0",
"@angular/compiler": "~15.1.0",
"@angular/core": "~15.1.0",
"@angular/forms": "~15.1.0",
"@angular/material": "^15.2.3",
"@angular/platform-browser": "~15.1.0",
"@angular/platform-browser-dynamic": "~15.1.0",
"@angular/router": "~15.1.0",
"@nestjs/axios": "^2.0.0",
"@nestjs/common": "^9.3.12",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.3.12",
"@nestjs/mongoose": "^9.2.2",
"@nestjs/platform-express": "^9.3.12",
"@nestjs/schedule": "^2.2.0",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"axios": "^1.3.4",
"d3": "^7.8.2",
"express-session": "^1.17.3",
"ngx-logger": "^5.0.11",
"reflect-metadata": "^0.1.13",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "^0.11.8"
}
}