-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.09 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.09 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
{
"name": "radix-web-console",
"description": "Radix Web Console; the web-based GUI to administer Radix applications",
"version": "4.17.1",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc --allowSyntheticDefaultImports --skipLibCheck & vite build",
"test": "vitest watch",
"test:no-watch": "vitest run",
"test:coverage": "vitest --coverage",
"lint": "biome check && tsc --noEmit --skipLibCheck",
"lint-fix": "biome check --write",
"lint-ts": "tsc --noEmit --skipLibCheck",
"lint:watch": "watch --color -n 1 biome lint --colors=force",
"lint-ts:watch": "tsc --noEmit --skipLibCheck --watch",
"deps": "npm run deps:license && npm run deps:stale",
"deps:license": "node scripts/deps-license-check.js",
"deps:stale": "node scripts/deps-stale-check.js",
"apigen:cost": "npx @rtk-query/codegen-openapi ./src/store/configs/cost-openapi-config.cts",
"apigen:log": "npx @rtk-query/codegen-openapi ./src/store/configs/log-openapi-config.cts",
"apigen:radix": "npx @rtk-query/codegen-openapi ./src/store/configs/radix-openapi-config.cts",
"apigen:scan": "npx @rtk-query/codegen-openapi ./src/store/configs/scan-openapi-config.cts",
"apigen:service-now": "npx @rtk-query/codegen-openapi ./src/store/configs/service-now-openapi-config.cts"
},
"dependencies": {
"@azure/msal-browser": "^4.28.1",
"@azure/msal-react": "^3.0.25",
"@equinor/eds-core-react": "^2.3.2",
"@equinor/eds-icons": "^1.2.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@reduxjs/toolkit": "^2.11.2",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/xterm": "^6.0.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"eventsource": "^4.1.0",
"http-status-codes": "^2.3.0",
"jdenticon": "^3.3.0",
"lodash-es": "^4.18.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-google-charts": "^5.2.1",
"react-markdown": "^10.1.0",
"react-redux": "^9.1.1",
"react-router": "^7.13.0",
"react-router-dom": "^7.13.0",
"react-select": "^5.10.2",
"react-toastify": "^11.0.5",
"sanitize.css": "^13.0.0",
"strip-ansi": "^7.1.2",
"styled-components": "^6.3.8"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@remix-run/web-fetch": "^4.4.2",
"@rtk-query/codegen-openapi": "^2.2.0",
"@testing-library/react": "^16.3.2",
"@types/lodash-es": "^4.17.9",
"@types/react": "^19.2.3",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"depcheck": "^1.4.7",
"fetch-mock": "^12.6.0",
"jsdom": "^27.4.0",
"license-checker": "^25.0.1",
"miragejs": "^0.1.48",
"mock-socket": "^9.3.1",
"ts-node": "^10.9.2",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!@ngrx|(?!deck.gl)|ng-dynamic)"
]
},
"browserslist": [
">1%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}