-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.39 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
{
"name": "itemly",
"version": "0.1.0",
"private": true,
"description": "Privacy-first, self-hosted receipt tracker with optional AI-assisted extraction.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Kamitoad/itemly.git"
},
"bugs": {
"url": "https://github.com/Kamitoad/itemly/issues"
},
"homepage": "https://github.com/Kamitoad/itemly#readme",
"packageManager": "pnpm@11.24.0",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "concurrently -k -n API,WEB -c green,cyan \"tsx watch server/index.ts\" \"vite --host 0.0.0.0\"",
"dev:api": "tsx watch server/index.ts",
"dev:web": "vite --host 0.0.0.0",
"build": "tsc -b && vite build",
"start": "tsx server/index.ts",
"restore": "tsx scripts/restore-backup.ts",
"test": "vitest run",
"test:watch": "vitest",
"check": "tsc -b && vitest run"
},
"dependencies": {
"express": "^5.1.0",
"multer": "^2.0.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/multer": "^2.0.0",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.2",
"concurrently": "^9.2.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vite": "^7.1.4",
"vitest": "^3.2.4"
}
}