-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.62 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.62 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
{
"name": "code-inventory",
"version": "1.0.0",
"description": "Code analysis and documentation system using ast-grep and Schema.org",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"routes:generate": "tsr generate",
"routes:watch": "tsr watch",
"test": "python3 scripts/run_tests.py",
"test:unit": "python3 scripts/run_tests.py --unit-only",
"test:integration": "python3 scripts/run_tests.py --integration-only",
"test:e2e": "python3 scripts/run_tests.py --e2e-only",
"test:react": "vitest run",
"test:react:watch": "vitest",
"test:react:coverage": "vitest run --coverage",
"test:browser": "npx playwright test",
"test:browser:chrome": "npx playwright test --project=chromium",
"test:browser:firefox": "npx playwright test --project=firefox",
"test:browser:webkit": "npx playwright test --project=webkit",
"test:browser:all": "npx playwright test --project=chromium --project=firefox --project=webkit",
"test:browser:mobile": "npx playwright test --project=mobile-chrome --project=mobile-safari",
"test:browser:install": "npx playwright install",
"test:browser:report": "npx playwright show-report",
"verify": "node scripts/verify-environment.js",
"ast-grep": "ast-grep"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.68.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^8.0.0",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.10",
"@mui/material": "^6.1.10",
"@posthog/ai": "^6.5.0",
"@tanstack/react-query": "^5.62.11",
"@tanstack/react-query-devtools": "^5.62.11",
"@tanstack/react-router": "^1.93.0",
"chart.js": "^4.5.1",
"chartjs-plugin-annotation": "^3.1.0",
"date-fns": "^3.6.0",
"framer-motion": "^11.18.2",
"immer": "^11.0.1",
"posthog-node": "^5.11.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^6.0.0",
"simple-statistics": "^7.8.8",
"zustand": "^4.5.7"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "^4.53.3",
"@rollup/rollup-linux-x64-gnu": "^4.53.3"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@tanstack/router-cli": "^1.93.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^25.0.1",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vitest": "^2.1.8"
}
}