-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 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
{
"name": "branches-api",
"version": "1.0.0",
"description": "Interview task – tiny TypeScript API for bank branches",
"main": "dist/branches-api/src/app.js",
"scripts": {
"build": "tsc",
"start": "node dist/branches-api/src/app.js",
"dev": "nodemon --exec ts-node branches-api/src/app.ts",
"test": "jest --runInBand --detectOpenHandles",
"lint": "eslint branches-api/src branches-api/functions/src --ext .ts --fix",
"format": "prettier --write \"branches-api/src/**/*.ts\" \"branches-api/functions/src/**/*.ts\""
},
"keywords": [],
"author": "d0sadata",
"license": "MIT",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"dotenv": "^17.2.3",
"express": "^5.2.1",
"firebase-functions": "^7.0.5",
"pino": "^10.3.0",
"pino-pretty": "^13.1.3",
"zod": "^4.3.6"
}
}