-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.48 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.48 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
{
"name": "course-flow",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"test:planner": "node tests/test_planner_regressions.cjs && node tests/test_course_purpose_links.cjs && node tests/test_degree_plan_ux.cjs && node tests/test_planner_python_contract.cjs && node tests/test_catalog_parser_sync.cjs",
"test:python": "pytest tests/",
"test:ui-contract": "node tests/test_ui_contract.cjs",
"test:e2e": "playwright test",
"test:ui-full": "npm run test:ui-contract && npm run test:e2e",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test": "npm run test:unit && npm run test:planner && npm run test:python && npm run test:ui-full",
"lint": "eslint .",
"preview": "vite preview",
"postinstall": "npx playwright install",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@types/d3-force": "^3.0.10",
"@types/d3-hierarchy": "^3.1.7",
"@xyflow/react": "^12.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-force": "^3.0.0",
"d3-hierarchy": "^3.1.2",
"lucide-react": "^0.548.0",
"pdfjs-dist": "^5.4.624",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.55.0",
"@tailwindcss/vite": "^4.1.13",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"tailwindcss": "^4.1.13",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vitest": "^4.0.18"
}
}