-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.73 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.73 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "banking-api-server",
"version": "1.0.0",
"description": "Express.js server for Banking Payee Management API",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"server": "tsx server/server.ts",
"server:dev": "nodemon --exec \"tsx\" server/server.ts",
"server:build": "tsc server/server.ts --outDir dist",
"server:start": "node dist/server.js",
"start": "npm run server",
"test": "jest",
"test:unit": "jest tests/",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:server": "tsx test-server.ts",
"test:curl": "curl -X POST http://localhost:3001/auth/generate-token"
},
"keywords": [
"banking",
"api",
"server",
"express",
"typescript",
"openapi",
"nodejs"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^20.0.0",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"@types/yamljs": "^0.2.34",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"supertest": "^6.3.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"axios": "^1.10.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.1.0",
"yamljs": "^0.3.0"
}
}