forked from finos/architecture-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.28 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.28 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
{
"name": "calm-hub-ui",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"start": "npm run copy-public && vite",
"build": "npm run copy-public && vite build",
"serve": "vite preview",
"prod": "npm run build && mkdir -p ../calm-hub/src/main/resources/META-INF/resources && rsync -a build/* ../calm-hub/src/main/resources/META-INF/resources",
"test": "vitest run",
"test-coverage": "vitest run --coverage",
"watch-test": "vitest watch",
"lint": "eslint .",
"format": "prettier --write .",
"copy-public": "copyfiles -u 1 ../brand/**/* public/",
"start-cypress": "npx cypress open"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/vite": "^4.1.4",
"@types/node": "^22.19.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^4.0.0",
"@vitest/coverage-v8": "^3.1.4",
"axios": "^1.12.0",
"axios-mock-adapter": "^2.1.0",
"copyfiles": "^2.4.1",
"css-what": "6.2.2",
"cytoscape": "^3.30.3",
"cytoscape-cola": "^2.5.1",
"cytoscape-dagre": "^2.5.0",
"oidc-client": "^1.11.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-dropzone": "^14.3.8",
"react-icons": "^5.5.0",
"react-json-view-lite": "^2.4.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.12.0",
"typescript": "^5.9.2",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"web-vitals": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/cypress": "^10.1.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/cytoscape": "^3.21.8",
"@types/file-saver": "^2.0.7",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"cypress": "^15.7.0",
"daisyui": "^5.0.0",
"dotenv": "^17.2.3",
"eslint": "^9.25.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"jsdom": "^26.0.0",
"npm-force-resolutions": "^0.0.10",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"tailwindcss": "^4.1.4",
"typescript": "^5.5.3",
"typescript-eslint": "^8.14.0",
"vite": "^7.0.8",
"vitest": "^3.0.6"
},
"resolutions": {
"css-what": "7.0.0",
"express": "5.2.1",
"nth-check": "2.1.1",
"postcss": "8.5.6",
"rollup": "4.54.0"
},
"proxy": "http://127.0.0.1:8080/",
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}