-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.22 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
{
"name": "watchbear",
"private": true,
"version": "0.0.0",
"description": "Watchbear monorepo: browser extension + server",
"license": "Apache-2.0",
"scripts": {
"dev": "pnpm -r --parallel dev",
"dev:ext": "pnpm --filter @watchbear/extension dev",
"build:ext": "pnpm --filter @watchbear/extension build",
"dev:server": "pnpm --filter @watchbear/server start:dev",
"build:server": "pnpm --filter @watchbear/server build",
"cert": "pnpm --filter @watchbear/server cert",
"build": "pnpm -r --if-present build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "pnpm -r --if-present typecheck",
"test": "pnpm -r --if-present test",
"test:all": "pnpm test && pnpm test:e2e",
"test:e2e": "pnpm --filter @watchbear/extension test:e2e",
"e2e:manual": "pnpm --filter @watchbear/extension e2e:manual"
},
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"packageManager": "pnpm@11.4.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.6.0",
"typescript-eslint": "^8.61.0"
}
}