-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.52 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
{
"name": "jini",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm:dev:api\" \"npm:dev:web\"",
"dev:web": "vite",
"dev:api": "tsx watch server/index.ts",
"api": "tsx server/index.ts",
"start": "tsx server/index.ts",
"build": "tsc -b && vite build",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"preview": "vite preview"
},
"dependencies": {
"compression": "^1.8.1",
"cors": "^2.8.6",
"date-fns": "^4.4.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"lucide-react": "^1.21.0",
"mammoth": "^1.12.0",
"multer": "^2.2.0",
"nanoid": "^5.1.11",
"openai": "^6.44.0",
"pdf-parse": "^2.4.5",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"read-excel-file": "^9.2.0",
"recharts": "^3.8.1",
"tsx": "^4.22.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/multer": "^2.1.0",
"@types/node": "^24.13.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^10.0.3",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.12",
"vitest": "^4.1.9"
}
}