-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "todo-microservice",
"version": "1.0.0",
"description": "Todo list microservice",
"main": "index.js",
"scripts": {
"dev": "tsc-watch --onSuccess \"node ./dist/app.js\"",
"start": "tsc && node ./dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/incodemx/todo-microservice.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/incodemx/todo-microservice/issues"
},
"homepage": "https://github.com/incodemx/todo-microservice#readme",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^5.0.0-alpha.8",
"pg": "^8.2.1",
"tsc-watch": "^4.2.9",
"winston": "^3.0.0",
"winston-transport-sentry-node": "^0.4.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/node": "^14.0.14",
"@types/pg": "^7.14.3",
"@types/winston": "^2.4.4",
"nodemon": "^2.0.20",
"ts-node": "^9.0.0",
"typescript": "^4.1.0-dev.20201102"
}
}