-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 4.16 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 4.16 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
{
"name": "mcp-context-forge-ui",
"private": true,
"version": "0.2.0",
"type": "module",
"engines": {
"node": ">=22.22.1"
},
"scripts": {
"dev": "vite",
"dev:e2e": "vite --base=/ --port 5173 --strictPort",
"build": "npm run generate && tsc -b && vite build",
"build:watch": "vite build --watch",
"preview": "vite preview",
"lint": "eslint --no-error-on-unmatched-pattern src server e2e",
"lint:fix": "eslint --no-error-on-unmatched-pattern src server e2e --fix",
"format": "prettier --write --ignore-unknown \"*.{ts,tsx,js,mjs,json,css,md}\" \"{src,server,e2e}/**/*.{ts,tsx,css,json}\"",
"format:check": "prettier --check --ignore-unknown \"*.{ts,tsx,js,mjs,json,css,md}\" \"{src,server,e2e}/**/*.{ts,tsx,css,json}\"",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"e2e": "playwright test --reporter=list",
"e2e:docker:up": "docker compose -f docker-compose.e2e.yml up -d --wait --build",
"e2e:docker:seed": "node --env-file-if-exists=.env --experimental-strip-types e2e/seed/seed.ts",
"e2e:docker:down": "docker compose -f docker-compose.e2e.yml down -v",
"e2e:docker": "(npm run e2e:docker:up && npm run e2e:docker:seed && E2E_REAL_API=true PLAYWRIGHT_BASE_URL=http://localhost:${PORT:-3000} PLAYWRIGHT_SKIP_WEBSERVER=1 node --env-file-if-exists=.env node_modules/.bin/playwright test --reporter=list; s=$?; npm run e2e:docker:down; exit $s)",
"e2e:html": "playwright test --reporter=html",
"e2e:ui": "playwright test --ui",
"e2e:debug": "playwright test --debug",
"e2e:install": "playwright install --with-deps chromium",
"e2e:report": "playwright show-report",
"i18n:extract": "formatjs extract 'src/**/*.{ts,tsx}' --out-file src/i18n/extracted.json --id-interpolation-pattern '[sha512:contenthash:base64:6]'",
"i18n:compile": "formatjs compile-folder --ast src/i18n/locales src/i18n/compiled",
"generate": "orval",
"secrets:scan": "uv tool run --from 'git+https://github.com/ibm/detect-secrets.git@076672a9a01abdfc7ecee2e7d14f08cdccb73976' detect-secrets scan --update .secrets.baseline --use-all-plugins --exclude-files '(?x)(package-lock\\.json$)|^\\.secrets\\.baseline$|src/i18n/locales/*|openapi.json'",
"secrets:audit": "uv tool run --from 'git+https://github.com/ibm/detect-secrets.git@076672a9a01abdfc7ecee2e7d14f08cdccb73976' detect-secrets audit .secrets.baseline",
"prepare": "husky || true"
},
"dependencies": {
"@floating-ui/react-dom": "^2.1.8",
"@fontsource-variable/inter": "^5.2.8",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-switch": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.8.0",
"prism-react-renderer": "^2.4.1",
"radix-ui": "^1.4.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-intl": "^10.1.1",
"recharts": "^3.10.1",
"shadcn": "^4.2.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@formatjs/cli": "^6.14.1",
"@playwright/test": "^1.49.1",
"@tailwindcss/vite": "^4.1.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^25.6.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^4.1.9",
"@vitest/ui": "^4.1.9",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^17.3.0",
"msw": "^2.14.2",
"orval": "^8.18.0",
"prettier": "^3.4.2",
"tailwindcss": "^4.1.4",
"typescript": "~5.8.3",
"typescript-eslint": "^8.32.0",
"vite": "^6.4.3",
"vitest": "^4.1.9"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,json,css,md}": "prettier --write --ignore-unknown",
"{src,server,e2e}/**/*.{ts,tsx}": "eslint --fix"
}
}