-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "images-generator-with-dalle-3",
"version": "3.0.6",
"description": "Images generator with DALL-E 3",
"author": "AI4Organization Engineers",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"axios": "^1.6.2",
"next": "14.0.4",
"openai": "^4.20.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.33.0"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@types/react": "18.2.42",
"base64-js": "^1.5.1",
"buffer": "^6.0.3",
"eslint": "8.55.0",
"eslint-config-next": "14.0.4",
"follow-redirects": "^1.15.3",
"ieee754": "^1.2.1",
"nanoid": "^5.0.4",
"postcss": "^8.4.32",
"queue-microtask": "^1.2.3",
"resolve-pkg-maps": "^1.0.0",
"run-parallel": "^1.2.0",
"safe-buffer": "^5.2.1",
"simple-concat": "^1.0.1",
"simple-get": "^4.0.1",
"typescript": "5.3.3",
"zod": "^3.22.4"
}
}