forked from chrkaatz/the-snap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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": "the-snap",
"version": "1.0.0",
"description": "Screen shot API",
"main": "src/server.js",
"scripts": {
"test": "ava --verbose",
"dev": "nodemon src/server.js | pino-pretty -c -l",
"start": "node src/server.js",
"doc": "apidoc -i src/ -o doc/",
"postinstall": "husky install || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrkaatz/the-snap.git"
},
"engines": {
"node": ">= 14.x"
},
"keywords": [],
"author": "Christian Kaatz",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrkaatz/the-snap/issues"
},
"apidoc": {
"name": "The Snap Documentation",
"title": "The Snap Documentation",
"url": "https://snap.openpolis.io/api",
"description": "A simple service to create screenshots and PDFs from unauthenticated accessible websites"
},
"homepage": "https://github.com/chrkaatz/the-snap#readme",
"dependencies": {
"ajv": "^8.0.0",
"ajv-formats": "^2.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-https-redirect": "^1.0.0",
"express-rate-limit": "^5.2.3",
"helmet": "^4.3.1",
"pino": "^6.9.0",
"puppeteer": "^9.1.1"
},
"devDependencies": {
"apidoc": "0.28.1",
"ava": "3.15.0",
"husky": "6.0.0",
"nodemon": "2.0.7",
"pino-pretty": "5.0.0",
"prettier": "2.3.0"
}
}