-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.95 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.95 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
120
121
122
123
124
125
126
{
"name": "genaiidp-ui",
"version": "0.3.15",
"private": true,
"engines": {
"node": ">=22.12.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@aws-amplify/ui-react": "^6.12.0",
"@aws-crypto/sha256-browser": "^2.0.2",
"@aws-crypto/sha256-js": "^2.0.2",
"@aws-sdk/client-cognito-identity": "^3.985.0",
"@aws-sdk/client-s3": "^3.985.0",
"@aws-sdk/client-ssm": "^3.985.0",
"@aws-sdk/hash-node": "^3.374.0",
"@aws-sdk/middleware-retry": "^3.374.0",
"@aws-sdk/protocol-http": "^3.374.0",
"@aws-sdk/s3-request-presigner": "^3.985.0",
"@aws-sdk/url-parser": "^3.374.0",
"@aws-sdk/util-format-url": "^3.775.0",
"@cloudscape-design/chat-components": "^1.0.68",
"@cloudscape-design/collection-hooks": "^1.0.76",
"@cloudscape-design/components": "^3.0.1112",
"@cloudscape-design/global-styles": "^1.0.44",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.2",
"@monaco-editor/react": "^4.7.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"ajv": "^8.18.0",
"ajv-formats": "^2.1.1",
"aws-amplify": "^6.16.2",
"axios": "^1.12.1",
"brace-expansion": "^2.0.2",
"chart.js": "^4.5.0",
"form-data": "^4.0.4",
"immer": "^10.1.3",
"js-yaml": "^4.1.1",
"json-schema-traverse": "^1.0.0",
"lodash-es": "^4.18.1",
"mammoth": "^1.9.1",
"pdfjs-dist": "^4.10.38",
"postcss": "^8.5.6",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "^18.3.1",
"react-icons": "^4.12.0",
"react-markdown": "^9.1.0",
"react-router-dom": "^6.30.3",
"react-syntax-highlighter": "^16.1.0",
"recharts": "^3.5.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"serialize-javascript": "^7.0.3",
"tmp": "^0.2.5",
"uuid": "^11.1.0",
"vuera": "^0.2.7",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz",
"dompurify": "^3.3.2"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "npm run lint && npm run typecheck && node --max-old-space-size=4096 ./node_modules/.bin/vite build",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"codegen": "graphql-codegen -c codegen.config.mjs && npm run generate-operations",
"generate-operations": "tsx scripts/generate-amplify-operations.ts"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@graphql-codegen/add": "^6.0.0",
"@graphql-codegen/cli": "^6.1.2",
"@graphql-codegen/typescript": "^5.0.8",
"@graphql-codegen/typescript-operations": "^5.0.8",
"@types/js-yaml": "^4.0.9",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.14.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"graphql": "^16.10.0",
"jsdom": "^26.1.0",
"prettier": "^2.8.8",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^3.1.0"
},
"overrides": {
"nth-check": "^2.0.1",
"fast-xml-parser": ">=5.5.6",
"monaco-editor": {
"dompurify": ">=3.3.2"
}
}
}