-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1 KB
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
{
"name": "gateway",
"version": "0.0.1",
"description": "",
"main": "src/server.ts",
"scripts": {
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js",
"dev": "tsnd -r tsconfig-paths/register --inspect --ignore node_modules --transpile-only src/shared/infra/http/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gateway"
],
"author": "Antonio Silva <tonybsilvadev@gmail.com>",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-http-proxy": "^1.6.3",
"morgan": "^1.10.0",
"redis": "4.1.0",
"reflect-metadata": "^0.1.13",
"typescript": "^4.8.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/express-http-proxy": "^1.6.3",
"@types/morgan": "^1.9.3",
"@types/redis": "^4.0.11",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.1"
},
"engines": {
"node": "18.12.1"
}
}