-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.03 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.03 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
{
"name": "mikroroom",
"version": "1.0.0",
"description": "Ultralight video meeting tool",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "npm run clean && node build.mjs",
"build:assets": "node build.mjs --assets",
"build:client": "node build.mjs --client",
"build:css": "node build.mjs --css",
"build:dev": "node build.mjs --dev",
"build:html": "node build.mjs --html",
"build:server": "node build.mjs --server",
"build:watch": "node build.mjs --watch --dev",
"clean": "rm -rf dist/ lib/ mikroroom-release/ *.zip",
"deploy": "npm run deploy:frontend && npm run deploy:backend",
"deploy:backend": "bash .deployment/deploy-backend.sh",
"deploy:frontend": "bash .deployment/deploy-frontend.sh",
"dev": "npm run build:dev && concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "npx http-server dist/app -p 8000",
"dev:server": "tsx watch src/api/index.ts",
"docker:build": "docker build -t mikroroom .",
"docker:run": "docker run -p 3000:3000 mikroroom",
"licenses": "grant check sbom.json --config .grant.yaml",
"lint": "biome check ./src ./tests",
"lint:fix": "biome check ./src ./tests --write",
"prepare": "husky",
"release": "bash release.sh",
"sbom": "syft file:package-lock.json --output spdx-json > ./sbom.json",
"scan": "grype ./sbom.json -o json",
"start": "node dist/api/mikroroom.mjs",
"start:dev": "tsx src/api/index.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2",
"@types/node": "latest",
"@vitest/coverage-v8": "4",
"concurrently": "latest",
"esbuild": "latest",
"happy-dom": "latest",
"html-minifier-terser": "7",
"http-server": "14",
"husky": "9",
"license-checker-rseidelsohn": "4",
"lightningcss": "1",
"tsup": "8",
"tsx": "4",
"typescript": "5",
"vitest": "4",
"wrangler": "4"
}
}