-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
30 lines (30 loc) · 1.07 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
{
"name": "microservice_nodejs_template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:base": "tsc -b packages/base",
"build:api_gateway": "tsc -b packages/api_gateway",
"build:backend": "tsc -b packages/backend",
"build": "tsc -b packages/api_gateway & tsc -b packages/backend",
"eslint": "npm --prefix packages/api_gateway run eslint & npm --prefix packages/backend run eslint & npm --prefix packages/base run eslint",
"eslint:fix": "npm --prefix packages/api_gateway run eslint:fix & npm --prefix packages/backend run eslint:fix & npm --prefix packages/base run eslint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TranBaVinhSon/microservice_nodejs_template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TranBaVinhSon/microservice_nodejs_template/issues"
},
"homepage": "https://github.com/TranBaVinhSon/microservice_nodejs_template#readme",
"devDependencies": {
"lerna": "^3.19.0"
},
"dependencies": {
"typescript": "^3.7.2"
}
}