-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 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
{
"name": "strawhub",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"convex dev\" \"vite dev\"",
"build": "vite build",
"start": "vite preview",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ci": "vitest run",
"coverage": "vitest run --coverage",
"test:e2e": "npm run build && npx playwright test"
},
"dependencies": {
"@convex-dev/auth": "^0.0.90",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-router": "1.162.8",
"@vercel/analytics": "^1.6.1",
"@vercel/functions": "^3.4.3",
"@vercel/speed-insights": "^1.3.1",
"convex": "^1.32.0",
"jszip": "^3.10.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.2.0",
"@tanstack/router-plugin": "^1.162.8",
"@types/node": "^25.3.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.5.0",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^9.1.0",
"eslint": "^9.39.3",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^28.1.0",
"tailwindcss": "^4.2.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.2",
"vitest": "^3.0.0"
}
}