-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.61 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.61 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
{
"name": "ai-chat-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3100",
"build": "next build",
"start": "next start",
"lint": "npm-run-all -cl lint:*",
"lint:es": "eslint --fix --color --cache --cache-location=node_modules/.cache/eslint/ ./src ./app",
"lint:types": "tsc --noEmit",
"gen-schema": "./node_modules/.bin/ts-json-schema-generator --no-type-check --type 'Conversation' --path 'src/lib/types.ts' -o 'src/lib/schemas/chat-message.schema.json'"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.978.0",
"@aws-sdk/credential-providers": "^3.978.0",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@json-render/core": "^0.3.0",
"@json-render/react": "^0.2.0",
"@pega/cosmos-react-core": "^9.0.0-build.17.2",
"@pega/cosmos-react-rte": "^9.0.0-build.17.3",
"@pega/cosmos-react-work": "^9.0.0-build.17.2",
"@uiw/react-codemirror": "^4.25.4",
"adaptivecards": "^3.0.5",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"next": "^15.1.0",
"openai": "^4.77.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "^6.1.13",
"swiper": "^12.0.3"
},
"devDependencies": {
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"npm-run-all": "^4.1.5",
"ts-json-schema-generator": "^2.4.0",
"typescript": "^5"
}
}