forked from Tinkoff/micro-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.53 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
{
"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 --with-deps",
"prerelease": "node scripts/prerelease",
"release": "nx run-many --target release --all",
"test": "nx affected --target test",
"lint": "nx workspace-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": "14.0.1",
"@angular/common": "14.0.1",
"@angular/compiler": "14.0.1",
"@angular/core": "14.0.1",
"@angular/forms": "14.0.1",
"@angular/platform-browser": "14.0.1",
"@angular/platform-browser-dynamic": "14.0.1",
"@angular/platform-server": "14.0.1",
"@angular/router": "14.0.1",
"@nguniversal/express-engine": "^13.1.1",
"@ngx-ssr/platform": "^1.1.1",
"@nrwl/angular": "14.2.4",
"express": "^4.15.2",
"rxjs": "~6.5.5",
"tslib": "^2.0.0",
"zone.js": "0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.1",
"@angular-eslint/eslint-plugin": "13.2.1",
"@angular-eslint/eslint-plugin-template": "13.2.1",
"@angular-eslint/template-parser": "13.2.1",
"@angular/cli": "~14.0.0",
"@angular/compiler-cli": "14.0.1",
"@angular/language-service": "14.0.1",
"@commitlint/config-conventional": "^12.1.4",
"@ng-builders/semrel": "^1.5.0",
"@ng-web-apis/common": "^1.12.0",
"@nguniversal/builders": "^13.1.1",
"@nrwl/cli": "14.2.4",
"@nrwl/cypress": "14.2.4",
"@nrwl/eslint-plugin-nx": "14.2.4",
"@nrwl/jest": "14.2.4",
"@nrwl/nx-cloud": "14.0.8",
"@nrwl/workspace": "14.2.4",
"@types/express": "^4.17.0",
"@types/jest": "27.4.1",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"codelyzer": "^6.0.0",
"commitlint": "^12.0.1",
"cypress": "^5.5.0",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-cypress": "^2.12.1",
"husky": "^4.3.8",
"jest": "27.5.1",
"jest-preset-angular": "11.1.2",
"lint-staged": "^10.5.4",
"ng-packagr": "14.0.1",
"nx": "14.2.4",
"postcss": "^8.3.9",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
"postcss-url": "10.1.3",
"prettier": "2.6.2",
"ts-jest": "27.1.4",
"ts-node": "10.8.1",
"tslint": "6.1.3",
"typescript": "4.7.3"
},
"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"
]
}
}