-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.31 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
{
"name": "smith-chart-spa",
"private": true,
"version": "1.0.0",
"packageManager": "bun@1.3.14",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc -b && TMPDIR=/tmp vite build",
"preview": "vite preview",
"lint": "eslint .",
"format:check": "prettier --check .",
"typecheck": "tsc -b",
"test": "TMPDIR=/tmp vitest run",
"test:rf": "TMPDIR=/tmp vitest run src/rf",
"test:chart": "TMPDIR=/tmp vitest run src/chart",
"test:e2e": "playwright test",
"test:e2e:pages": "playwright test --config=playwright.pages.config.ts tests/e2e/offline.spec.ts",
"capture:docs": "TMPDIR=/tmp playwright test --config=playwright.docs.config.ts",
"check:rf-boundary": "node scripts/check-rf-boundary.mjs && tsc -p tsconfig.rf.json",
"verify:references": "python3 scripts/verify-reference-cases.py --fixtures tests/reference-cases",
"verify:no-runtime-network": "node scripts/verify-no-runtime-network.mjs",
"verify:offline": "node scripts/verify-offline.mjs",
"verify:assets": "node scripts/verify-asset-budgets.mjs",
"verify:reproducible-build": "node scripts/verify-reproducible-build.mjs",
"verify:docs": "python3 scripts/verify-docs.py",
"licenses": "node scripts/dependency-license-report.mjs",
"licenses:write": "node scripts/dependency-license-report.mjs --write",
"ci": "bun run format:check && bun run lint && bun run typecheck && bun run check:rf-boundary && bun run verify:references && bun run verify:no-runtime-network && bun run test && bun run build && bun run verify:assets && bun run verify:offline && bun run verify:docs"
},
"dependencies": {
"lucide-react": "^1.25.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"vite-plugin-pwa": "^1.3.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"fast-check": "^4.9.0",
"jsdom": "^29.1.1",
"prettier": "^3.9.5",
"typescript": "6.0.3",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}