-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "codeboiler",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.3",
"@clerk/nextjs": "^5.6.3",
"@monaco-editor/react": "^4.6.0",
"@types/codemirror": "^5.60.15",
"anthropic-ai": "^0.0.10",
"axios": "^1.7.7",
"commander": "^12.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"framer-motion": "^11.9.0",
"inquirer": "^11.1.0",
"lucide-react": "^0.446.0",
"next": "^14.2.13",
"next-auth": "^4.24.8",
"open": "^10.1.0",
"react": "^18",
"react-codemirror2": "^8.0.0",
"react-dom": "^18"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dotenv": "^6.1.1",
"@types/node": "^20.16.10",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"description": "This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).",
"main": "pages/index.tsx",
"keywords": [],
"author": "",
"license": "ISC",
"bin": {
"codeboiler": "./cli/cli.js"
}
}