-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 820 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 820 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": "google-reverse-image-api",
"version": "0.2.3",
"description": "A simple Express.js and Puppeteer app that includes a reverse API to search for images using Google Reverse Image Search.",
"keywords": [
"api",
"google",
"reverse",
"google reverse image",
"vercel"
],
"main": "src/app.js",
"scripts": {
"start": "node build/app.js",
"dev": "nodemon src/app.js",
"build": "npm run clean && tsc && npm run copy-assets",
"clean": "rimraf build"
},
"author": "SOME-1HING",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}