-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.28 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "playwright-docker-server",
"version": "2.0.0",
"packageManager": "pnpm@10.18.0",
"description": "Minimalistic playwright server in docker.",
"author": "mo doaie<mdoaie@yahoo.co.uk>",
"license": "Apache-2.0",
"repository": "https://github.com/Cyrus-d/playwright-docker-server",
"main": "build/src/main.js",
"scripts": {
"docker:release": "tsx scripts/docker-build-push-run.ts",
"clean": "rimraf coverage build tmp",
"build": "pnpm run clean && tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"tsc:watch": "pnpm exec tsc --noEmit --watch --project tsconfig.watch.json",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint src test vitest.setup.ts --cache --cache-location .cache/.eslintcache && pnpm lint:root",
"lint:fix": "pnpm lint --fix && pnpm lint:root:fix",
"lint:root": "eslint .github *.config.{js,cjs,mjs,ts} *.json README.md --no-error-on-unmatched-pattern --cache --cache-location .cache/.eslintcache",
"lint:root:fix": "pnpm lint:root --fix",
"lint:ws": "pnpm dlx sherif@latest",
"typecheck": "tsc --noEmit",
"fix:all": "pnpm format:fix && pnpm lint:fix && pnpm typecheck",
"test": "vitest run --coverage",
"test:no-cache": "vitest run --coverage --no-cache",
"test:watch": "vitest --coverage",
"prepare": "husky || exit 0",
"lint-staged": "lint-staged",
"commitlint": "commitlint",
"start": "node build/src/main.js",
"start-debug": "node --inspect=0.0.0.0 build/src/main.js",
"deps:update": "npx taze -r -w && pnpm install",
"deps:update:major": "npx taze major -r -w && pnpm install"
},
"dependencies": {
"httpxy": "0.5.1",
"playwright": "1.59.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@pixpilot/dev-config": "^3.20.0",
"@pixpilot/eslint-config": "^2.10.0",
"@types/node": "^24.12.3",
"@vitest/coverage-v8": "^4.1.5",
"abort-controller": "^3.0.0",
"eslint": "9.39.4",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"prettier": "~3.8.3",
"rimraf": "^6.1.3",
"tsutils": "^3.21.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "4.1.5",
"ws": "^8.20.0"
}
}