-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
44
45
46
47
48
{
"name": "transferfy-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"start": "pnpm build && node dist/main.js",
"start:dev": "nodemon src/main.ts | pino-pretty",
"lint": "pnpm dlx eslint src/**",
"test:unit": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/dotenv": "^8.2.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"@types/nodemon": "^1.19.6",
"@types/pino-http": "^5.8.4",
"dotenv": "^16.4.5",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"prettier": "3.3.3",
"prisma": "^5.17.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1"
},
"dependencies": {
"@prisma/client": "5.17.0",
"express": "^4.19.2",
"express-oauth2-jwt-bearer": "^1.6.0",
"pino-http": "^10.2.0",
"querystring": "^0.2.1",
"ts-jest": "^29.2.4"
}
}