-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.25 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.25 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
{
"name": "cognito",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 2137",
"dev:log": "next dev -p 2137 2>&1 | tee logs/dev.log",
"dev:full": "concurrently \"npm run docker:up\" \"npm run dev\" --names \"docker,next\" --prefix-colors \"blue,green\"",
"dev:infra": "docker-compose up -d",
"build": "next build",
"start": "next start -p 2137",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:eval": "vitest --config vitest.e2e.config.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:all": "vitest run && playwright test",
"precommit": "npm run lint && npm run type-check && npm run build && vitest run && npm run test:e2e",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docker:restart": "docker-compose restart",
"docker:clean": "docker-compose down -v"
},
"dependencies": {
"@langchain/community": "^1.1.1",
"@langchain/core": "^1.1.7",
"@langchain/langgraph": "^1.0.7",
"@langchain/openai": "^1.2.0",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^3.0.2",
"i18next": "^25.6.0",
"langchain": "^1.2.2",
"mongodb": "^6.20.0",
"next": "^15.0.0",
"next-auth": "^5.0.0-beta.30",
"next-intl": "^4.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.93.3",
"weaviate-client": "^3.9.0",
"zod": "^3.23.8",
"zod-i18n-map": "^2.27.0"
},
"devDependencies": {
"@langchain/langgraph-cli": "^1.1.2",
"@playwright/test": "^1.56.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.0",
"concurrently": "^9.2.1",
"dotenv": "^16.4.5",
"eslint": "^9",
"eslint-config-next": "^15.0.0",
"happy-dom": "^20.0.10",
"mongodb-memory-server": "^10.3.0",
"typescript": "^5",
"vitest": "^4.0.6"
}
}