-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 912 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 912 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
34
35
36
37
{
"name": "ulearn_chat_ms",
"version": "1.0.0",
"description": "microservicio para funcionalidad de chat",
"main": "dist/server.js",
"scripts": {
"start": "tsc && node dist/server.js",
"dev": "nodemon --exec ts-node src/server.ts",
"lint": "tslint -o lint.txt --force -c tslint.json 'src/**/*.ts'"
},
"keywords": [
"microservicios",
"node",
"express",
"mongo"
],
"author": "Freddy Feria",
"license": "MIT",
"devDependencies": {
"@typegoose/typegoose": "^6.4.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/mongoose": "^5.7.12",
"@types/node": "^13.13.0",
"dotenv": "^8.2.0",
"nodemon": "^2.0.3",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"dependencies": {
"express": "^4.17.1",
"mongoose": "^5.9.9",
"reflect-metadata": "^0.1.13",
"winston": "^3.2.1"
}
}