-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.67 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
{
"name": "video-chat",
"private": true,
"version": "2.0.1",
"description": "A simple WebRTC video chat app (React + Node)",
"homepage": "https://video.janole.com",
"image": "janole/video-chat",
"author": "Jan Ole Suhr <ole@janole.com> (https://janole.com)",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.33.3",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "pnpm -r --parallel run dev",
"build": "pnpm -r run build",
"docker:image": "node -e \"console.log(process.env.DOCKER_IMAGE ?? 'janole/video-chat')\"",
"docker:platform": "node -e \"console.log(process.env.DOCKER_PLATFORM ?? ('linux/' + (process.arch === 'arm64' ? 'arm64' : 'amd64')))\"",
"docker:build": "docker buildx build --pull --load --platform $(pnpm -s docker:platform) -t $(pnpm -s docker:image):$npm_package_version .",
"docker:push": "docker push $(pnpm -s docker:image):$npm_package_version",
"lint": "eslint . --cache --cache-strategy content",
"lint:fix": "eslint . --cache --cache-strategy content --fix",
"test": "pnpm -r run test",
"typecheck": "pnpm -r run typecheck",
"ok": "pnpm run build && pnpm run lint:fix && pnpm run test",
"qa": "pnpm run build && pnpm run lint && pnpm run test"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^16.0.0",
"typescript": "^5.9.0"
}
}