-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 3.08 KB
/
package.json
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
{
"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": ">=20.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",
"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",
"lint-strict": "tsc --noEmit --skipLibCheck --strictNullChecks",
"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": "^3.17.0",
"@azure/msal-react": "^2.0.22",
"@equinor/eds-core-react": "^0.42.0",
"@equinor/eds-icons": "^0.21.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@reduxjs/toolkit": "^2.2.7",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"http-status-codes": "^2.3.0",
"jdenticon": "^3.3.0",
"lodash": "^4.17.21",
"nanoid": "^5.0.7",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-charts": "^4.0.7",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.1",
"react-router": "^6.26.0",
"react-router-dom": "^6.26.0",
"react-select": "^5.8.1",
"react-toastify": "^10.0.5",
"sanitize.css": "^13.0.0",
"strip-ansi": "^7.1.0",
"styled-components": "^6.1.13",
"vite": "^5.4.8",
"vite-plugin-checker": "^0.8.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@remix-run/web-fetch": "^4.4.2",
"@rtk-query/codegen-openapi": "^1.2.0",
"@testing-library/react": "^16.0.1",
"@types/lodash": "^4.17.9",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react-swc": "^3.7.1",
"depcheck": "^1.4.7",
"fetch-mock": "^11.1.5",
"jsdom": "^25.0.1",
"license-checker": "^25.0.1",
"miragejs": "^0.1.48",
"mock-socket": "^9.3.1",
"ts-node": "^10.9.2",
"typescript": "~5.6.2",
"vite-plugin-checker": "^0.8.0",
"vitest": "^1.6.0"
},
"jest": {
"transformIgnorePatterns": ["node_modules/(?!@ngrx|(?!deck.gl)|ng-dynamic)"]
},
"browserslist": [">1%", "not dead", "not ie <= 11", "not op_mini all"]
}