-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.43 KB
/
package.json
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
49
50
51
52
53
{
"name": "screenshotcrew",
"version": "1.0.1",
"description": "ScreenshotCrew is an open-source screenshot as a service using Puppeteer headless browser. Using Node.js, Puppeteer and other plugins, ScreenshotCrew provides utility tool to create screenshot from any web page.",
"main": "app.js",
"scripts": {
"dev": "nodemon app dev",
"start": "node app prod",
"test": "mocha --timeout 90000 tests/*.js --exit"
},
"engines": {
"node": "18.18.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jadiagaurang/ScreenshotCrew.git"
},
"keywords": [
"screenshot",
"screenshot-utility",
"screenshot-generator",
"screenshotscloud"
],
"author": "Gaurang Jadia",
"private": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/jadiagaurang/ScreenshotCrew/issues"
},
"homepage": "https://github.com/jadiagaurang/ScreenshotCrew#readme",
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.0.0",
"supertest": "^6.2.3"
},
"dependencies": {
"@godaddy/terminus": "^4.10.2",
"aws-sdk": "^2.1137.0",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"ejs": "^3.1.7",
"express": "^4.18.1",
"memcached": "^2.2.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.16",
"puppeteer": "^14.1.0",
"serve-favicon": "^2.5.0",
"underscore": "^1.13.3",
"uuid": "^8.3.2",
"winston": "^3.7.2"
}
}