-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.04 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.04 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
{
"name": "examples",
"version": "1.0.0",
"description": "Radix-Leptos UI Component Library with Comprehensive Testing",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:comprehensive": "playwright test radix-leptos-comprehensive.spec.ts --reporter=html",
"test:pagination": "playwright test pagination-components.spec.ts --reporter=html",
"test:performance": "playwright test performance-stress.spec.ts --reporter=html",
"test:cross-browser": "playwright test cross-browser.spec.ts --reporter=html",
"test:all": "playwright test --reporter=html",
"test:report": "playwright show-report",
"test:run-comprehensive": "./tests/run-comprehensive-tests.sh",
"test:install": "playwright install",
"test:codegen": "playwright codegen http://localhost:8081/production-test.html",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"bundle-size": "node scripts/bundle-size-monitor.js",
"bundle-analyze": "node scripts/bundle-size-monitor.js analyze",
"bundle-monitor": "node scripts/bundle-size-monitor.js monitor",
"perf-init": "node scripts/performance-benchmark.js init",
"perf-run": "node scripts/performance-benchmark.js run",
"perf-compare": "node scripts/performance-benchmark.js compare",
"perf-report": "node scripts/performance-benchmark.js report"
},
"keywords": [
"radix",
"leptos",
"ui",
"components",
"wasm",
"rust",
"testing",
"playwright"
],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.15.0",
"devDependencies": {
"@playwright/test": "^1.55.0",
"@storybook/addon-a11y": "^8.6.14",
"@storybook/addon-docs": "^8.6.14",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^8.6.14",
"@storybook/html-vite": "^8.6.14",
"playwright": "^1.55.0",
"storybook": "^8.6.14"
}
}