-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.35 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.35 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
112
113
114
115
116
117
118
119
{
"name": "webstore",
"version": "0.0.0",
"license": "BSD 3-Clause License",
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"jiraMode": "true"
}
},
"scripts": {
"nx": "nx",
"start": "nx serve webstore",
"start:api": "nx serve api",
"start:api:prod": "nx serve api",
"start:webstore": "nx serve webstore",
"start:webstore:prod": "nx serve webstore --prod --localize",
"start:admin": "nx serve admin-page",
"start:admin:prod": "nx serve admin-page --prod",
"build": "nx build webstore",
"build:api": "nx build api",
"build:api:prod": "nx build api",
"build:webstore": "nx build webstore",
"build:webstore:prod": "nx build webstore --prod --localize",
"build:webstore:dev": "nx build webstore --localize",
"build:admin": "nx build admin-page",
"build:admin:prod": "nx build admin-page --prod",
"build:admin:dev": "nx build admin-page",
"test": "nx run-many --all --target=test",
"test:ci": "nx run-many --all --target=test --skip-nx-cache",
"lint": "nx workspace-lint && nx run-many --target=lint --all=true",
"e2e": "nx e2e webstore-e2e",
"e2e:ci": "nx run-many --target=e2e --all --maxParallel=5 --browser chrome",
"e2e:open": "nx e2e webstore-e2e --watch",
"e2e:open:prod": "nx e2e webstore-e2e --watch --configuration=production",
"e2e:open:da": "nx e2e webstore-e2e --watch --configuration=da",
"e2e:open:admin": "nx e2e admin-page-e2e --watch",
"e2e:open:admin:prod": "nx e2e admin-e2e --watch --configuration=production",
"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": "npm run format:write",
"format:write": "nx format:write --base=development && nx run api:format",
"format:check": "nx format:check --base=development && nx run api:format-check",
"format:write:ts": "nx format:write",
"format:check:ts": "nx format:check",
"format:write:api": "nx run api:format",
"format:check:api": "nx run api:format-check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"postinstall": "ngcc"
},
"private": true,
"dependencies": {
"@angular-devkit/build-angular": "14.1.1",
"@angular-slider/ngx-slider": "^2.0.4",
"@angular/animations": "14.1.1",
"@angular/cdk": "14.1.1",
"@angular/common": "14.1.1",
"@angular/compiler": "14.1.1",
"@angular/compiler-cli": "14.1.1",
"@angular/core": "14.1.1",
"@angular/forms": "14.1.1",
"@angular/localize": "14.1.1",
"@angular/material": "14.1.1",
"@angular/platform-browser": "14.1.1",
"@angular/platform-browser-dynamic": "14.1.1",
"@angular/router": "14.1.1",
"@ng-bootstrap/ng-bootstrap": "^13.0.0",
"@ngrx/component-store": "14.0.2",
"@nrwl/cli": "14.5.4",
"@nrwl/nx-cloud": "14.3.0",
"@nrwl/workspace": "14.5.4",
"@nxrocks/nx-spring-boot": "4.1.0",
"@popperjs/core": "^2.11.5",
"bootstrap": "^5.0.0",
"ngx-clipboard": "^15.1.0",
"nx": "14.5.4",
"rxjs": "^7.4.0",
"tslib": "^2.0.0",
"typescript": "4.7.4",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "14.0.2",
"@angular-eslint/eslint-plugin-template": "14.0.2",
"@angular-eslint/template-parser": "14.0.2",
"@angular/language-service": "14.1.1",
"@digitalroute/cz-conventional-changelog-for-jira": "^6.7.0",
"@nrwl/angular": "14.5.4",
"@nrwl/cypress": "14.5.4",
"@nrwl/eslint-plugin-nx": "14.5.4",
"@nrwl/jest": "14.5.4",
"@nrwl/linter": "14.5.4",
"@types/jest": "27.4.1",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"commitizen": "^4.2.4",
"cypress": "^8.7.0",
"dotenv": "10.0.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "latest",
"jest": "27.5.1",
"jest-preset-angular": "11.1.2",
"prettier": "2.7.1",
"ts-jest": "27.1.4",
"ts-node": "10.8.2"
}
}