-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 832 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 832 Bytes
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
{
"name": "logging-microservice",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/app.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/app.js\"",
"build": "tsc",
"postinstall": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.0.0",
"body-parser": "^1.20.0",
"cls-rtracer": "^2.6.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"pino-http": "^8.1.1",
"pino-pretty": "^8.1.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.4",
"@types/pino-http": "^5.8.1",
"concurrently": "^7.2.2",
"nodemon": "^2.0.19",
"prisma": "^4.0.0",
"typescript": "^4.7.4"
}
}