-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
179 lines (179 loc) · 6.85 KB
/
package.json
File metadata and controls
179 lines (179 loc) · 6.85 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"version": "18.5.0",
"description": "Angular-native node-based UI library for building node editors, workflow builders, and interactive graph interfaces.",
"author": "Siarhei Huzarevich",
"homepage": "https://flow.foblex.com",
"docs": "https://flow.foblex.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Foblex/f-flow.git"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"nx": "nx",
"prebuild": "npm run seo:check",
"heroku-postbuild": "npm run build",
"dev": "nx serve portal --configuration development",
"dev:reference-apps": "nx run-many -t serve --projects=schema-designer,call-center,uml-diagram,tournament-bracket --parallel=4",
"dev:full": "nx run-many -t serve --projects=portal,schema-designer,call-center,uml-diagram,tournament-bracket --parallel=5",
"dev:schema-designer": "nx serve schema-designer --configuration development",
"dev:call-center": "nx serve call-center --configuration development",
"dev:uml-diagram": "nx serve uml-diagram --configuration development",
"dev:uml-diagram-example": "npm run dev:uml-diagram",
"dev:tournament-bracket": "nx serve tournament-bracket --configuration development",
"serve": "npm run dev",
"serve:shared": "nx serve portal --configuration development --host=0.0.0.0",
"start": "node dist/f-flow-portal/server/server.mjs",
"build": "nx run-many -t build --projects=portal,schema-designer,call-center,uml-diagram,tournament-bracket",
"build:portal": "nx build portal",
"build:portal:dev": "nx build portal --configuration development",
"build:schema-designer": "nx build schema-designer",
"build:call-center": "nx build call-center",
"build:uml-diagram": "nx build uml-diagram",
"build:uml-diagram-example": "npm run build:uml-diagram",
"build:tournament-bracket": "nx build tournament-bracket",
"build:example-apps": "nx run-many -t build --projects=schema-designer,call-center,uml-diagram,tournament-bracket",
"build:f-flow": "nx run f-flow:package",
"build:layout:dagre": "nx run layout-dagre:package",
"build:layout:elk": "nx run layout-elk:package",
"build:packages": "nx run-many -t package --projects=f-flow,layout-dagre,layout-elk",
"watch": "nx build portal --configuration development --watch",
"test": "nx test f-flow",
"test:portal-pages": "npm run build:example-apps && npx nx build portal --configuration development && node --test scripts/portal-pages.test.mjs",
"test:ci": "nx test f-flow --watch=false --browsers=ChromeHeadless",
"lint": "nx run-many -t lint --projects=f-flow,layout-dagre,layout-elk,portal-ui,portal-e2e",
"lint:workspace": "nx run-many -t lint --all",
"lint:portal": "nx run portal:lint",
"lint:examples": "nx run f-examples:lint-all",
"lint:pro-examples": "nx run-many -t lint --projects=pro-example-ai-low-code-platform,pro-example-uml-diagram",
"lint:example-apps": "nx run-many -t lint --projects=schema-designer,call-center,uml-diagram,tournament-bracket",
"e2e": "nx run portal-e2e:e2e",
"e2e:open": "nx run portal-e2e:open",
"publish": "nx run f-flow:publish",
"publish:flow": "nx run f-flow:publish",
"publish:layout:dagre": "nx run layout-dagre:publish",
"publish:layout:elk": "nx run layout-elk:publish",
"publish:packages": "npm run publish:flow && npm run publish:layout:dagre && npm run publish:layout:elk",
"affected:build": "nx affected -t build",
"affected:test": "nx affected -t test",
"affected:lint": "nx affected -t lint",
"verify": "npm run lint && npm run test:ci && npm run build",
"release": "standard-version --skip.commit",
"release:minor": "standard-version --release-as minor --skip.commit",
"release:major": "standard-version --release-as major --skip.commit",
"serve:ssr": "nx run portal:serve-ssr",
"serve:ssr:f-flow-portal": "npm run serve:ssr",
"cypress:run": "npm run e2e",
"graph": "nx graph",
"show:projects": "nx show projects",
"seo:check": "node scripts/generate-portal-artifacts.mjs && node scripts/validate-seo-content.mjs",
"check:redraw-cycles": "node scripts/check-redraw-connection-cycles.mjs",
"prepare": "husky"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "ci",
"section": "Continuous Integration"
},
{
"type": "chore",
"hidden": true
}
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,html,css,scss}": [
"prettier --write"
]
},
"private": true,
"dependencies": {
"@angular/animations": "18.2.13",
"@angular/cdk": "18.2.14",
"@angular/common": "18.2.13",
"@angular/compiler": "18.2.13",
"@angular/core": "18.2.13",
"@angular/forms": "18.2.13",
"@angular/material": "18.2.14",
"@angular/platform-browser": "18.2.13",
"@angular/platform-browser-dynamic": "18.2.13",
"@angular/platform-server": "18.2.13",
"@angular/router": "18.2.13",
"@angular/ssr": "18.2.19",
"@cypress/angular": "^2.1.0",
"@foblex/2d": "^1.2.1",
"@foblex/m-render": "^4.0.2",
"@foblex/mediator": "1.1.3",
"@foblex/mutator": "^1.0.7",
"@foblex/platform": "1.0.4",
"@foblex/utils": "1.1.1",
"@ngrx/signals": "^18.1.1",
"chokidar": "^4.0.3",
"dagre": "^0.8.5",
"elkjs": "^0.9.3",
"express": "^4.21.2",
"html2canvas": "^1.4.1",
"modern-screenshot": "^4.6.8",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.19",
"@angular/cli": "18.2.19",
"@angular/compiler-cli": "18.2.13",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@nx/angular": "22.2.7",
"@nx/workspace": "22.2.7",
"@types/dagre": "^0.7.52",
"@types/express": "^4.17.17",
"@types/html2canvas": "^1.0.0",
"@types/jasmine": "~5.1.0",
"@types/node": "^18.18.0",
"angular-eslint": "20.2.0",
"copyfiles": "2.4.1",
"cypress": "^13.15.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^16.1.6",
"ng-packagr": "^18.1.0",
"nx": "22.2.7",
"packagename": "^2.0.1",
"prettier": "^3.6.2",
"standard-version": "^9.5.0",
"start-server-and-test": "^2.1.5",
"typescript": "~5.5.2",
"typescript-eslint": "8.40.0"
}
}