forked from jaydenthesun/AI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 852 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 852 Bytes
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
{
"name": "codepath-agent",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H 127.0.0.1 -p 3456",
"build": "next build",
"start": "next start -H 127.0.0.1 -p 3456",
"preview": "next build && next start -H 127.0.0.1 -p 3456",
"lint": "next lint"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"lucide-react": "^1.14.0",
"next": "14.2.35",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^3.8.1",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@types/node": "^20.19.40",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.35",
"postcss": "^8.5.14",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3"
}
}