-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.77 KB
/
package.json
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
{
"private": true,
"type": "module",
"name": "buckeye-gpt",
"description": "ChatGPT clone (with latest OpenAI models) built free for students at the Ohio State University.",
"version": "0.6.1",
"keywords": [
"nextjs",
"stack-auth",
"typescript",
"daisyui",
"langchain",
"openai"
],
"homepage": "https://buckeye.chat",
"license": "GPL-3.0-only",
"author": {
"name": "Keming He",
"email": "keminghe.career@gmail.com",
"url": "https://www.linkedin.com/in/keminghe/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KemingHe/buckeye-gpt.git"
},
"bugs": {
"url": "https://github.com/KemingHe/buckeye-gpt/issues",
"email": "keminghe.career@gmail.com"
},
"scripts": {
"prepare": "husky || true",
"lint": "biome ci .",
"lint:fix": "biome check --write .",
"build": "next build",
"test:unit": "vitest",
"test:unit:update-snapshots": "vitest --update",
"test:e2e": "playwright test",
"test:e2e:update-snapshots": "playwright test --update-snapshots",
"test": "pnpm test:unit && pnpm test:e2e",
"verify": "pnpm lint && pnpm build && pnpm test && pnpm scan:secrets",
"dev": "next dev --turbopack",
"check:favicon": "realfavicon check -s cli 3000",
"scan:secrets": "ggshield secret scan repo .",
"start": "next start"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@langchain/core": "^0.3.24",
"@langchain/openai": "^0.3.14",
"@next/third-parties": "^15.1.1",
"@stackframe/stack": "^2.6.37",
"ai": "^4.0.20",
"langchain": "^0.3.7",
"next": "^15.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"server-only": "^0.0.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@playwright/test": "^1.49.1",
"@release-it/conventional-changelog": "^9.0.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/dotenv-safe": "^8.1.6",
"@types/node": "^22.10.2",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"daisyui": "^4.12.22",
"dotenv-safe": "^9.1.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"realfavicon": "^0.4.12",
"release-it": "^17.10.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}