-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 769 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 769 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
{
"name": "mirologs",
"author": "miroswd",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev:server": "ENVIRONMENT=dev ts-node-dev --inspect --transpile-only --ignore-watch node_modules --respawn src/shared/infra/http/server.ts",
"start": "node dist/src/shared/infra/http/server.js"
},
"dependencies": {
"cors": "2.8.5",
"dotenv": "16.0.1",
"express": "4.18.1",
"express-async-errors": "3.1.1",
"mongoose": "6.4.1",
"pino": "8.1.0",
"pino-pretty": "8.1.0",
"reflect-metadata": "0.1.13",
"socket.io": "4.5.1",
"tsyringe": "4.7.0"
},
"devDependencies": {
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"ts-node-dev": "2.0.0",
"typescript": "4.7.4"
}
}