-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 995 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 995 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
{
"name": "node-api-gateway",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --ignore node_modules ./src/server.ts"
},
"keywords": [],
"author": "Gabriel Lins",
"license": "MIT",
"dependencies": {
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-http-proxy": "^1.6.3",
"helmet": "^5.0.2",
"js-yaml": "^4.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-http-proxy": "^1.6.3",
"@types/helmet": "^4.0.0",
"@types/js-yaml": "^4.0.5",
"@types/morgan": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
}
}