-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"name": "playwright-kit",
"private": true,
"description": "A focused toolkit for solving real-world Playwright E2E pain points.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/romradchenko/playwright-kit.git"
},
"bugs": {
"url": "https://github.com/romradchenko/playwright-kit/issues"
},
"homepage": "https://github.com/romradchenko/playwright-kit#readme",
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "oxlint .",
"build": "npm -w packages/auth run build",
"typecheck": "npm run build && npm -w packages/auth run typecheck",
"test:unit": "npm -w packages/auth run test",
"test:examples": "npm -w examples/next-admin-auth run test && npm -w examples/vite-react-auth run test:e2e",
"test": "npm run test:unit && npm run test:examples",
"check": "npm run lint && npm run typecheck && npm run test",
"prepare": "lefthook install"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"lefthook": "^1.12.3",
"oxlint": "^0.16.0"
}
}