-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 903 Bytes
/
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
{
"name": "template",
"version": "1.0.0",
"description": "Dockerized template for use in microservices developed in NodeJS and Express",
"homepage": "https://github.com/matias1305/microservices-template",
"main": "server.js",
"private": true,
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon dist/server.js"
},
"keywords": [
"microservices",
"express"
],
"author": {
"name" : "Matias Espinoza",
"email" : "[email protected]",
"url": "https://github.com/matias1305/microservices-template"
},
"bugs": {
"email" : "[email protected]",
"url": "https://github.com/matias1305/microservices-template"
},
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.16.4"
},
"devDependencies": {
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1"
}
}