generated from openmcp-project/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.82 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.82 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": "ui-frontend",
"version": "0.0.0",
"type": "module",
"engines": {
"node": "^24.0.0",
"npm": "^11.0.0"
},
"scripts": {
"dev": "tsx ./server.ts --local-dev",
"start": "node dist/server.js",
"build": "npm run build:server && npm run build:client",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"lint": "npm run lint:eslint && npm run lint:package-json",
"lint:eslint": "eslint ./src --report-unused-disable-directives --max-warnings 0",
"lint:eslint:fix": "eslint ./src --fix",
"lint:package-json": "npmPkgJsonLint .",
"preview": "vite preview",
"test:vi": "vitest",
"test:cy": "cypress run --component --browser chrome",
"test:cy:open": "cypress open --component --browser chrome",
"generate-graphql-types": "graphql-codegen --config graphql.config.yaml",
"generate-graphql-types:watch": "graphql-codegen --config graphql.config.yaml --watch",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@apollo/client": "3.14.0",
"@fastify/autoload": "6.3.1",
"@fastify/cookie": "11.0.2",
"@fastify/cors": "11.1.0",
"@fastify/env": "5.0.3",
"@fastify/helmet": "13.0.2",
"@fastify/http-proxy": "11.3.0",
"@fastify/secure-session": "8.2.0",
"@fastify/sensible": "6.0.3",
"@fastify/session": "11.1.1",
"@fastify/static": "8.3.0",
"@fastify/vite": "8.2.1",
"@hookform/resolvers": "5.2.2",
"@monaco-editor/react": "4.7.0",
"@openapi-contrib/openapi-schema-to-json-schema": "5.1.0",
"@sentry/node": "10.27.0",
"@sentry/react": "10.24.0",
"@sentry/vite-plugin": "4.6.0",
"@ui5/webcomponents": "2.15.1",
"@ui5/webcomponents-fiori": "2.15.1",
"@ui5/webcomponents-icons": "2.15.1",
"@ui5/webcomponents-react": "2.15.3",
"@ui5/webcomponents-react-charts": "2.15.3",
"@xyflow/react": "12.9.2",
"clsx": "2.1.1",
"dagre": "0.8.5",
"diff": "8.0.2",
"dotenv": "17.2.3",
"fastify": "5.6.2",
"fastify-plugin": "5.1.0",
"graphql": "16.12.0",
"graphql-config": "5.1.5",
"i18next": "25.6.1",
"javascript-time-ago": "2.5.12",
"js-yaml": "4.1.1",
"monaco-editor": "0.54.0",
"monaco-yaml": "5.4.0",
"path-browserify": "1.0.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-error-boundary": "6.0.0",
"react-hook-form": "7.66.0",
"react-i18next": "16.2.4",
"react-router-dom": "7.9.5",
"react-time-ago": "7.3.5",
"swr": "2.3.6",
"yaml": "2.8.1",
"zod": "4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.39.1",
"@graphql-codegen/cli": "6.0.1",
"@graphql-codegen/client-preset": "5.1.1",
"@testing-library/react": "16.3.0",
"@types/dagre": "0.7.53",
"@types/js-yaml": "4.0.9",
"@types/node": "24.10.0",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@ui5/webcomponents-cypress-commands": "2.15.3",
"@vitejs/plugin-react": "5.1.0",
"@vitest/eslint-plugin": "1.4.2",
"cypress": "15.8.1",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-i18next": "6.1.3",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"fastify-tsconfig": "3.0.0",
"globals": "16.5.0",
"jsdom": "27.1.0",
"npm-package-json-lint": "9.0.0",
"prettier": "3.6.2",
"tsx": "4.20.6",
"typescript": "5.9.3",
"typescript-eslint": "8.46.3",
"vite": "7.2.2",
"vite-plugin-static-copy": "3.1.4",
"vitest": "4.0.8"
},
"npmpackagejsonlint": {
"rules": {
"prefer-absolute-version-dependencies": "error",
"prefer-absolute-version-devDependencies": "error"
}
}
}