-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 847 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 847 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
34
35
36
37
38
39
40
41
{
"name": "shotapi",
"version": "1.0.0",
"description": "A simple API for capturing screenshots of web pages",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"lint": "eslint src"
},
"keywords": [
"screenshot",
"api",
"puppeteer",
"docker",
"nodejs"
],
"author": "Synapsr",
"license": "MIT",
"dependencies": {
"express": "^4.18.3",
"puppeteer": "^22.10.0",
"node-cache": "^5.1.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"winston": "^3.12.0",
"dotenv": "^16.4.5",
"express-rate-limit": "^7.2.0",
"joi": "^17.12.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}