public
anord
read
Ledger
Why work hard when you can work easier?
Languages
Repository composition by tracked source files.
TypeScript
86%
CSS
10%
SQL
3%
Shell
1%
HTML
0%
Trace
apps/api/package.json
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
Author
Date
Commit
Line
Code
1
{
2
"name": "@ledger/api",
3
"version": "0.1.0",
4
"private": true,
5
"type": "module",
6
"scripts": {
7
"dev": "tsx watch src/index.ts",
8
"build": "tsc -p tsconfig.json",
9
"db:migrate": "tsx src/db/migrate.ts",
10
"db:seed": "tsx src/db/seed.ts",
11
"test": "vitest run"
12
},
13
"dependencies": {
14
"@ledger/shared": "0.1.0",
15
"bcryptjs": "^2.4.3",
16
"bullmq": "^5.12.12",
17
"cookie-parser": "^1.4.7",
18
"cors": "^2.8.5",
19
"dotenv": "^16.4.5",
20
"express": "^4.21.1",
21
"express-rate-limit": "^7.4.1",
22
"gray-matter": "^4.0.3",
23
"helmet": "^8.0.0",
24
"ioredis": "^5.4.1",
25
"jsonwebtoken": "^9.0.2",
26
"marked": "^14.1.2",
27
"pg": "^8.13.0",
28
"sanitize-html": "^2.13.1",
29
"zod": "^3.23.8"
30
},
31
"devDependencies": {
32
"@types/bcryptjs": "^2.4.6",
33
"@types/cookie-parser": "^1.4.8",
34
"@types/cors": "^2.8.17",
35
"@types/express": "^5.0.0",
36
"@types/jsonwebtoken": "^9.0.7",
37
"@types/node": "^22.8.6",
38
"@types/pg": "^8.11.10",
39
"supertest": "^7.0.0",
40
"tsx": "^4.19.1",
41
"typescript": "^5.6.3",
42
"vitest": "^2.1.3"
43
}
44
}