-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 844 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 844 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
{
"name": "tweet-reply-generator",
"version": "1.0.0",
"description": "AI-powered tweet reply generator with secure backend",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"build": "echo 'No build step required'",
"vercel-build": "echo 'Build complete - validating files...' && ls -la public/ && echo 'Files validated successfully'",
"test": "node -e \"console.log('Health check test'); require('./server.js')\""
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"express-rate-limit": "^7.1.5",
"dotenv": "^16.3.1"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"keywords": ["twitter", "ai", "reply", "generator"],
"author": "surojitpvt",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}