-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.79 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.79 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
{
"name": "infocompanies",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --report-unused-disable-directives --max-warnings 0 --fix",
"tsc": "tsc",
"preview": "vite preview",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css}\"",
"tsc:scripts:watch": "tsc -p scripts/tsconfig.json --watch",
"postinstall": "tsc -p scripts/tsconfig.json",
"get-token": "node ./scripts/build/get-token.mjs",
"extract-types": "node ./scripts/build/generate-types.mjs extract-types-internal",
"extract-types-internal": "openapi-typescript http://localhost:8083/v3/api-docs --redocly='redocly.yaml' -o src/types/codegen/api.d.ts --alphabetize --generate-path-params --properties-required-by-default && prettier --write src/types/codegen/api.d.ts && eslint src/types/codegen/api.d.ts --fix"
},
"engines": {
"node": ">20"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@fontsource/poppins": "^5.1.0",
"@loadable/component": "^5.16.4",
"@mui/icons-material": "^5.16.8",
"@mui/joy": "5.0.0-beta.32",
"@mui/material": "^5.16.8",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@tanstack/react-query": "^5.62.2",
"@types/recharts": "^1.8.29",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^14.0.0",
"dotenv": "^16.4.7",
"embla-carousel-react": "^8.5.1",
"lodash": "^4.17.21",
"lucide-react": "^0.456.0",
"node-fetch": "^3.3.2",
"posthog-js": "^1.194.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.53.2",
"react-intl": "^6.8.9",
"react-joyride": "^2.9.3",
"react-markdown": "^10.1.0",
"react-router": "^7.0.2",
"react-toastify": "^9.1.3",
"react-window": "^1.8.10",
"recharts": "2.13.0-alpha.4",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"type-fest": "^4.30.0",
"vite-plugin-env-compatible": "^2.0.1",
"zustand": "^4.5.5"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@openapitools/openapi-generator-cli": "^2.22.0",
"@tanstack/eslint-plugin-query": "^5.62.1",
"@types/loadable__component": "^5.13.9",
"@types/node": "^20.17.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"eslint": "9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.13.0",
"openapi-typescript": "^7.9.1",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"postcss-nesting": "^12.1.5",
"prettier": "3.2.5",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vite": "^5.4.11"
}
}