-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
54
55
{
"name": "playwright-screenshot-api",
"version": "2.2.1",
"type": "module",
"description": "A service for capturing website screenshots with various options",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"docker:dev": "docker compose -f docker-compose.dev.yml up --build",
"docker:prod": "docker compose up --build",
"test:api": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:api:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:api:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:manual:visual": "bats tests/visual/screenshot.bats",
"test:manual:cache": "bash tests/manual/cache-test.sh",
"release": "bash release.sh",
"release:as": "bash release.sh"
},
"dependencies": {
"date-fns": "4.1.0",
"express": "^4.21.2",
"node-cache": "^5.1.2",
"playwright": "^1.49.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"bats": "^1.11.1",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vlazic/playwright-screenshot-api.git"
},
"keywords": [
"screenshot",
"playwright",
"docker",
"express"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vlazic/playwright-screenshot-api/issues"
},
"homepage": "https://github.com/vlazic/playwright-screenshot-api#readme",
"directories": {
"test": "tests"
},
"author": "Vladimir Lazić <[email protected]> (https://vlazic.com/)"
}