-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "my-app",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write . --ignore-path .gitignore",
"summarize": "npx ts-node scripts/summarize",
"reply": "npx ts-node scripts/reply"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@next/font": "^13.3.0",
"@octokit/app": "^13.1.2",
"@octokit/auth-app": "^4.0.9",
"@octokit/rest": "^19.0.7",
"@octokit/webhooks": "^10.7.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^18.15.11",
"@types/react": "^18.0.35",
"dotenv": "^16.0.3",
"geist": "^1.3.1",
"next": "^13.3.0",
"next-themes": "^0.2.1",
"openai-streams": "^5.0.0",
"postcss-import": "^15.1.0",
"prettier-plugin-tailwindcss": "^0.2.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark": "^14.0.2",
"remark-html": "^15.0.2",
"server-only": "^0.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"wagmi": "^0.12.10",
"yield-stream": "^3.0.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.3.1"
}
}