-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 KB
/
package.json
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
{
"name": "loan-service",
"version": "1.0.0",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"dev": "nodemon --exec tsx src/index.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@biomejs/biome": "1.8.3",
"@jest/globals": "^29.7.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.3.0",
"@types/nodemon": "^1.19.6",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"pg": "^8.12.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"supertest": "^7.0.0",
"zod": "^3.23.8"
}
}