-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 3.08 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
{
"name": "group-chat-ai",
"version": "1.0.0",
"description": "Group Chat AI - AI-powered group conversations with multiple personas for collaborative discussions",
"private": true,
"workspaces": [
"frontend",
"backend",
"infrastructure",
"shared"
],
"scripts": {
"install:all": "npm install && npm run install:frontend && npm run install:backend && npm run install:infrastructure",
"install:frontend": "cd frontend && npm install",
"install:backend": "cd backend && npm install",
"install:infrastructure": "cd infrastructure && npm install",
"build": "npm run build:shared && npm run build:frontend && npm run build:backend",
"build:shared": "cd shared && npm run build",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"test": "npm run test:shared && npm run test:frontend && npm run test:backend",
"test:shared": "cd shared && npm test",
"test:frontend": "cd frontend && npm test",
"test:backend": "cd backend && npm test",
"deploy:dev": "npm run build && cd infrastructure && npm run deploy:dev",
"deploy:staging": "npm run build && cd infrastructure && npm run deploy:staging",
"deploy:prod": "npm run build && cd infrastructure && npm run deploy:prod",
"lint": "npm run lint:frontend && npm run lint:backend",
"lint:frontend": "cd frontend && npm run lint",
"lint:backend": "cd backend && npm run lint",
"config": "node scripts/config-manager.cjs",
"config:status": "node scripts/config-manager.cjs --status",
"config:init": "node scripts/config-manager.cjs --init",
"config:validate": "node scripts/config-manager.cjs --validate",
"docs:translate": "node scripts/translate-docs.cjs",
"docs:translate:help": "node scripts/translate-docs.cjs --help",
"docs:translate:single": "node scripts/translate-docs.cjs --lang",
"docs:test": "node scripts/test-docs-translation.cjs",
"personas:generate": "npm run build:shared && node scripts/generate-personas-i18n.js"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "20.0.0",
"@typescript-eslint/eslint-plugin": "8.41.0",
"@typescript-eslint/parser": "8.41.0",
"eslint": "9.34.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"jest": "^30.1.3",
"prettier": "3.6.2",
"typescript-eslint": "8.41.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-org/group-chat-ai.git"
},
"keywords": [
"ai",
"group-chat",
"conversation",
"multi-persona",
"collaborative",
"chat",
"aws",
"react",
"typescript"
],
"author": "Your Organization",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.876.0"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}