-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.1 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 4.1 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "webui",
"version": "26.6.0",
"private": true,
"scripts": {
"plugins:gen": "node scripts/generate-plugin-index.mjs",
"copy-monaco": "node scripts/copy-monaco.mjs",
"predev": "npm run plugins:gen && npm run copy-monaco",
"prebuild": "npm run plugins:gen && npm run copy-monaco",
"pretest": "npm run plugins:gen",
"pretest:unit": "npm run plugins:gen",
"pretest:integration": "npm run plugins:gen",
"pretype-check": "npm run plugins:gen",
"preci": "npm run plugins:gen",
"dev": "next dev --webpack",
"dev:https": "next dev --experimental-https",
"build": "next build && tsc -p tsconfig.server.json",
"start": "node server.js",
"lint": "eslint --max-warnings 0",
"lint:tables": "node scripts/lint-tables.mjs",
"lint:tabs": "node scripts/lint-tabs.mjs",
"lint:borders": "node scripts/lint-borders.mjs",
"lint:plugin-lazy": "node scripts/lint-plugin-lazy.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:unit": "vitest run __tests__/unit",
"test:integration": "vitest run --config vitest.integration.config.mts __tests__/integration",
"test:e2e": "playwright test",
"test:e2e:smoke": "playwright test --project=chromium --grep @smoke",
"test:e2e:ui": "playwright test --ui",
"test:e2e:up": "docker compose -p bl-e2e -f docker-compose.e2e.yml up -d",
"test:e2e:down": "docker compose -p bl-e2e -f docker-compose.e2e.yml down -v",
"test:e2e:logs": "docker compose -p bl-e2e -f docker-compose.e2e.yml logs -f",
"test:docker-ssl": "bash scripts/docker-ssl-qa.sh",
"test:watch": "vitest __tests__/unit",
"ci": "npm run type-check && npm run lint && npm run lint:tables && npm run lint:tabs && npm run lint:borders && npm run lint:plugin-lazy && npm run format:check && npm run test:unit",
"validate:manifest": "tsx scripts/validate-webadmin-manifest.ts",
"generate-bl-types": "node scripts/generate-bl-types.mjs",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --max-warnings 0",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"dependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"@monaco-editor/react": "^4.7.0",
"@tanstack/react-table": "^8.21.3",
"acorn": "^8.16.0",
"acorn-jsx": "^5.3.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cron-parser": "^5.5.0",
"date-fns": "^4.1.0",
"dcmjs": "^0.50.1",
"fflate": "^0.8.3",
"hl7-dictionary": "^1.0.1",
"libphonenumber-js": "^1.13.3",
"lucide-react": "^0.575.0",
"monaco-editor": "^0.55.1",
"next": "16.2.10",
"next-themes": "^0.4.6",
"node-forge": "^1.3.3",
"qrcode": "^1.5.4",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-is": "^19.0.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"recharts": "^3.7.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"undici": "^6.27.0",
"use-sync-external-store": "^1.6.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/node-forge": "^1.3.14",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/use-sync-external-store": "^0.0.6",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^4.1.0",
"ajv": "^8.20.0",
"eslint": "^9",
"eslint-config-next": "^16.2.10",
"eslint-config-prettier": "^10.1.8",
"happy-dom": "^20.8.4",
"husky": "^9.1.7",
"jsdom": "^27.0.1",
"lint-staged": "^16.3.3",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.1",
"shadcn": "^3.8.5",
"tailwindcss": "^4",
"tsx": "^4.23.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.1.0"
}
}