-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.29 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "qrtak",
"version": "4.0.10",
"private": true,
"description": "Generate TAK client configuration QR codes instantly",
"main": "index.html",
"type": "module",
"scripts": {
"dev": "vite",
"build": "allow-scripts && vite build",
"preview": "vite preview",
"serve": "vite preview --port 3000",
"test": "allow-scripts && jest",
"test:watch": "jest --watch",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed",
"e2e:install": "playwright install --with-deps",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"security:audit": "npm audit --audit-level=moderate",
"security:check": "npm audit --audit-level=moderate",
"build:docker": "docker build --build-arg VERSION=$npm_package_version -t qrtak:latest -t qrtak:$npm_package_version .",
"scan:trivy": "trivy image qrtak:latest",
"scan:grype": "grype qrtak:latest",
"scan:container": "npm run scan:trivy",
"scan:all": "npm run scan:trivy && npm run scan:grype",
"sbom:generate": "syft qrtak:latest -o spdx-json > sbom.spdx.json"
},
"scriptsExtra": {
"changelog:audit": "node scripts/generate-changelog-audit.cjs > /dev/null && echo 'Wrote docs/CHANGELOG-AUDIT.md'"
},
"keywords": [
"tak",
"atak",
"itak",
"qr-code",
"pwa",
"offline"
],
"author": "TAK Onboarding Platform Team",
"license": "MIT",
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@babel/core": "^7.29.7",
"@eslint/js": "^10.0.1",
"@lavamoat/allow-scripts": "^5.1.0",
"@playwright/test": "^1.62.0",
"babel-jest": "^30.4.1",
"eslint": "^10.4.1",
"eslint-plugin-security": "^4.0.0",
"fast-xml-parser": "^5.10.1",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"playwright": "^1.62.0",
"vite": "^8.1.5",
"vite-plugin-pwa": "^1.3.0"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"jszip": "^3.10.1",
"qrcode": "^1.5.4"
},
"overrides": {
"inflight": "npm:lru-cache@^10.4.3",
"sourcemap-codec": "npm:@jridgewell/sourcemap-codec@^1.5.0"
},
"lavamoat": {
"allowScripts": {
"jest>@jest/core>jest-resolve>unrs-resolver#1.11.1": true,
"vite>esbuild#0.27.1": true
}
}
}