-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "resume-agent-web",
"private": true,
"version": "1.0.28",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "concurrently -k -n vite,api -c cyan,magenta \"vite\" \"tsx watch server/index.ts\"",
"dev:client": "vite",
"dev:server": "tsx watch server/index.ts",
"build": "vite build",
"start": "tsx server/index.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"preflight": "node scripts/preflight-public-surface.mjs",
"check:viewports": "node scripts/check-viewports.mjs"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"hono": "^4.7.5",
"qrcode.react": "^4.2.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tsx": "^4.19.3"
},
"devDependencies": {
"@types/node": "^22.13.13",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"playwright-core": "^1.60.0",
"sharp": "^0.34.5",
"typescript": "^5.8.2",
"vite": "^6.0.11",
"vitest": "^3.2.6"
}
}