-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 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
{
"name": "kantigo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"migrate": "tsx scripts/migrate.ts",
"seed": "tsx scripts/seed.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.72.1",
"@aws-sdk/client-s3": "^3.995.0",
"@aws-sdk/s3-request-presigner": "^3.995.0",
"@axiomhq/js": "^1.4.0",
"@axiomhq/logging": "^0.2.0",
"@axiomhq/nextjs": "^0.2.0",
"@google/generative-ai": "^0.24.1",
"@tailwindcss/typography": "^0.5.19",
"bcryptjs": "^3.0.3",
"dotenv": "^17.2.3",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^0.577.0",
"mongoose": "^8.19.2",
"next": "^16.1.6",
"openai": "^6.17.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"baseline-browser-mapping": "^2.9.19",
"eslint": "^9",
"eslint-config-next": "16.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"mongodb-memory-server": "^11.0.1",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5"
}
}