-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
107 lines (107 loc) · 3.34 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
{
"name": "micro-sentry",
"version": "0.0.0-development",
"license": "Apache 2.0",
"scripts": {
"ng": "ng",
"nx": "nx",
"start": "nx serve",
"build": "nx affected --target build --configuration production",
"prerelease": "node scripts/prerelease",
"release": "nx run-many --target release --all",
"test": "nx affected --target test",
"lint": "nx affected --target lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"dev:ssr": "ng run docs:serve-ssr",
"serve:ssr": "node dist/docs/server/main.js",
"build:ssr": "ng build --configuration production && ng run docs:server:production",
"prerender": "ng run docs:prerender",
"workspace-generator": "nx workspace-generator"
},
"private": true,
"dependencies": {
"@angular/animations": "17.3.12",
"@angular/common": "17.3.12",
"@angular/compiler": "17.3.12",
"@angular/core": "17.3.12",
"@angular/forms": "17.3.12",
"@angular/platform-browser": "17.3.12",
"@angular/platform-browser-dynamic": "17.3.12",
"@angular/platform-server": "17.3.12",
"@angular/router": "17.3.12",
"@angular/ssr": "17.3.11",
"@ngx-ssr/platform": "1.2.1",
"express": "4.21.1",
"rxjs": "7.8.1",
"tslib": "2.8.1",
"zone.js": "0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.3.11",
"@angular-devkit/core": "17.3.11",
"@angular-devkit/schematics": "17.3.11",
"@angular-eslint/eslint-plugin": "17.5.3",
"@angular-eslint/eslint-plugin-template": "17.5.3",
"@angular-eslint/template-parser": "17.5.3",
"@angular/cli": "17.3.11",
"@angular/compiler-cli": "17.3.12",
"@commitlint/config-conventional": "18.6.3",
"@ng-builders/semrel": "1.5.0",
"@nx/angular": "17.1.2",
"@nx/eslint": "17.1.2",
"@nx/eslint-plugin": "17.1.2",
"@nx/jest": "17.1.2",
"@nx/workspace": "17.1.2",
"@schematics/angular": "17.3.11",
"@types/express": "4.17.21",
"@types/jest": "29.5.14",
"@types/node": "14.18.63",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"commitlint": "18.6.1",
"dotenv": "10.0.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"husky": "4.3.8",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-preset-angular": "13.1.6",
"lint-staged": "10.5.4",
"ng-packagr": "17.3.0",
"nx": "17.1.2",
"postcss": "8.4.47",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.8.3",
"postcss-url": "10.1.3",
"prettier": "2.8.8",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.2.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,html,md,less,scss,json}": [
"npm run format:write",
"git add"
]
}
}