-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "local-ledger",
"version": "0.1.0",
"private": true,
"description": "Local-first UK bank transaction tracker. Your data never leaves your machine.",
"author": "Amarjeet Singh Rai",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sonu27/spend-tracker.git"
},
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:migrate": "npx tsx src/db/migrate.ts",
"db:seed": "npx tsx src/db/seed.ts"
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@libsql/client": "^0.17.0",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.1",
"next": "16.1.6",
"qrcode.react": "^4.2.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"recharts": "^3.7.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^24.11.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.9",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"typescript": "^5"
}
}