This repository was archived by the owner on Sep 18, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
{
"name": "leorodney-monolithic-server",
"version": "1.0.0",
"description": "ai image generator server side",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon --exec ts-node server.ts",
"build": "tsc"
},
"keywords": [
"leorodney",
"ai image generator",
"ai",
"openai",
"dalle",
"image-generator"
],
"author": "whybe7",
"license": "ISC",
"dependencies": {
"@handy.js/handy": "^2.1.0",
"bcrypt": "^5.1.0",
"cloudinary": "^1.35.0",
"connect-mongo": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-session": "^1.17.3",
"helmet": "^6.1.1",
"lusca": "^1.7.0",
"mongoose": "^7.0.2",
"openai": "^3.2.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/lusca": "^1.7.1",
"@types/node": "^18.15.9",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}