generated from guilhermemj/microservice-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.36 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
44
45
46
{
"name": "api-gateway-example",
"version": "1.0.0",
"description": "A simple and opinionated API Gateway example",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"start": "npm run serve",
"serve": "node dist",
"serve:dev": "ts-node-dev --inspect=3001 --poll --respawn --transpileOnly src/index.ts",
"build": "tsc",
"build:watch": "tsc -w --skipLibCheck",
"lint": "eslint src/ --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guilhermemj/api-gateway-example.git"
},
"keywords": [],
"author": "Guilherme Jacomini <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/guilhermemj/api-gateway-example/issues"
},
"homepage": "https://github.com/guilhermemj/api-gateway-example#readme",
"dependencies": {
"@guilhermemj/app-error": "^1.1.0",
"@guilhermemj/micro-web-server": "^1.2.2",
"@types/jsonwebtoken": "^8.5.1",
"axios": "^0.21.2",
"dotenv": "^8.2.0",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"ts-node-dev": "^1.1.6",
"typescript": "^3.9.9"
}
}