-
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.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 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": "transaction-ledger",
"version": "0.5.3",
"description": "A ledger application for managing bank account transactions",
"main": "index.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "biome lint",
"format": "biome format",
"check": "biome check",
"check:write": "biome check --write",
"build": "tsup",
"dev": "tsx src/index.ts",
"watch": "tsx watch --exclude src/**/*.test.ts src/ src/index.ts",
"seed": "tsx src/seeds/seed.ts",
"prepare": "husky"
},
"keywords": [
"botkeeper"
],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^5.1.0",
"http-status-codes": "^2.3.0",
"husky": "^9.1.7",
"mongoose": "^8.13.1",
"swagger-ui-express": "^5.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.1",
"@swc/core": "^1.11.16",
"@swc/jest": "^0.2.37",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"dotenv": "^16.4.7",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.4",
"supertest": "^7.1.0",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}