-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 2.46 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 2.46 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
{
"name": "knowbear-frontend",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:full": "node scripts/dev-full.mjs",
"api:dev": "cd api && ../.venv/bin/python -m uvicorn main:app --reload --port 8000",
"api:test": "cross-env PYTHONPATH=. .venv/bin/python -m pytest api/tests",
"api:install": ".venv/bin/python -m pip install -r api/requirements.txt",
"build": "node node_modules/vite/bin/vite.js build",
"vercel-build": "npm run build",
"type-check": "tsc -b",
"lint": "eslint .",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"preview": "vite preview",
"test": "vitest",
"test:smoke": "playwright test --reporter=line"
},
"dependencies": {
"@sentry/browser": "^9.39.0",
"@supabase/supabase-js": "^2.91.0",
"@tanstack/query-sync-storage-persister": "^5.69.0",
"@tanstack/react-query": "^5.69.0",
"@tanstack/react-query-persist-client": "^5.69.0",
"framer-motion": "^12.28.1",
"lucide-react": "^0.562.0",
"marked": "^17.0.1",
"mermaid": "^11.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.12.0",
"remark-gfm": "^4.0.1",
"wrangler": "^4.76.0",
"zod": "^3.24.1",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.53.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/node": "^25.0.9",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"cross-env": "^10.1.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.13.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.35",
"prettier": "^3.2.4",
"tailwindcss": "^3.4.1",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.3",
"vitest": "^3.0.0"
},
"overrides": {
"ajv": "^6.14.0",
"dompurify": "3.3.2",
"minimatch": "^9.0.7",
"rollup": "^4.58.1"
}
}