-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "social-poster-api",
"version": "1.0.0",
"description": "RESTful API server for automated Instagram posting using Brave browser",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node index.ts",
"dev:watch": "ts-node-dev --respawn --transpile-only index.ts",
"build": "tsc",
"clean": "rimraf dist",
"prebuild": "npm run clean"
},
"keywords": [
"instagram",
"api",
"automation",
"puppeteer",
"express",
"rest-api"
],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"dotenv": "^17.2.3",
"cors": "^2.8.5",
"multer": "^2.0.0-rc.4",
"puppeteer": "^21.5.2",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.8.7",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.0.0"
}
}