-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.64 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": "luca-general-ledger",
"version": "0.5.0",
"description": "AI-driven general ledger with cryptographic audit trail",
"private": true,
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"test": "jest --runInBand",
"test:unit": "jest --testPathPattern=tests/unit",
"test:integration": "jest --testPathPattern=tests/integration --runInBand",
"migrate": "tsx node_modules/knex/bin/cli.js migrate:latest --knexfile knexfile.ts",
"migrate:rollback": "tsx node_modules/knex/bin/cli.js migrate:rollback --knexfile knexfile.ts",
"seed": "tsx node_modules/knex/bin/cli.js seed:run --knexfile knexfile.ts",
"typecheck": "tsc --noEmit",
"webhooks:retry": "tsx src/scripts/retry-webhooks.ts",
"chain:rebuild": "tsx src/scripts/rebuild-from-chain.ts",
"chain:recover": "tsx src/scripts/recover-transactions.ts"
},
"dependencies": {
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"decimal.js": "^10.4.3",
"express": "^4.18.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.3",
"knex": "^3.1.0",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"uuid": "^9.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.0",
"@types/pg": "^8.18.0",
"@types/supertest": "^7.2.0",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"supertest": "^7.2.2",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.2"
}
}