-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.42 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.42 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
74
75
76
77
78
{
"name": "matcher",
"private": true,
"version": "1.0.0",
"type": "module",
"author": "mulf",
"description": "",
"scripts": {
"dev:frontend": "cd frontend && vite",
"dev:backend": "cd backend && tsx src/main.ts",
"dev": "concurrently \"pnpm run dev:backend\" \"pnpm run dev:frontend\"",
"build:frontend": "cd frontend && tsc -p tsconfig.json && vite build",
"build:backend": "cd backend && tsc -p tsconfig.json",
"build": "rm -rf dist && pnpm run build:frontend && npm run build:backend",
"preview": "vite preview",
"start": "node dist/server/main.js",
"lint:backend": "eslint backend",
"lint:frontend": "eslint frontend",
"lint": "pnpm run lint:backend && npm run lint:frontend",
"format": "prettier --write ."
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.1",
"@fastify/multipart": "^9.0.3",
"@fastify/session": "^11.1.0",
"@fastify/static": "^8.1.1",
"@headlessui/react": "^2.2.2",
"@heroicons/react": "^2.2.0",
"@paralleldrive/cuid2": "^2.2.2",
"@tailwindcss/vite": "^4.1.7",
"@tanstack/react-query": "^5.75.2",
"clsx": "^2.1.1",
"connect-session-knex": "^5.0.0",
"dotenv": "^16.5.0",
"express-session": "^1.18.1",
"fastify": "^5.3.2",
"framer-motion": "^12.9.7",
"google-auth-library": "^9.15.1",
"got": "^14.4.7",
"knex": "^3.1.0",
"node-poppler": "^8.0.1",
"openai": "^4.97.0",
"p-limit": "^6.2.0",
"pg": "^8.15.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.8",
"react-router": "^7.5.3",
"tailwindcss": "^4.1.5",
"zod": "^3.24.4",
"zustand": "^5.0.4"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@tanstack/eslint-plugin-query": "^5.74.7",
"@types/node": "^22",
"@types/pg": "^8.11.14",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^8.2.2",
"esbuild": "^0.25.4",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.8.2",
"typescript-eslint": "^8.30.0",
"vite": "^6.3.1",
"vite-tsconfig-paths": "^5.1.4"
}
}