-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 971 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 971 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
{
"name": "api-gateway",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"tsc": "ts-node-dev -r tsconfig-paths/register",
"prebuild": "npm run clean",
"build": "tsc -b tsconfig.build.json",
"start:dev": "NODE_ENV=development DEBUG=log nodemon",
"start": "npm run build && DEBUG=log node dist/index.js",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint:fix": "npm run lint --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/express-http-proxy": "^1.6.3",
"@types/jsonwebtoken": "^8.5.8",
"nodemon": "^2.0.16",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.7.2"
},
"dependencies": {
"dotenv-extended": "^2.9.0",
"express": "^4.18.1",
"express-http-proxy": "^1.6.3",
"jsonwebtoken": "^8.5.1"
}
}