-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
60 lines (60 loc) · 2.46 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "loopback4-example-microservices",
"version": "1.0.0",
"description": "How to use LoopBack.next and some recommended best practices.",
"main": "facade/index.js",
"scripts": {
"postinstall": "bin/install",
"build:account": "cd ./services/account && npm run build",
"build:customer": "cd ./services/customer && npm run build",
"build:transaction": "cd ./services/transaction && npm run build",
"build:facade": "cd ./services/facade && npm run build",
"build": "npm run build:account && npm run build:customer && npm run build:transaction && npm run build:facade",
"lint": "npm run prettier:check && npm run tslint",
"lint:fix": "npm run prettier:fix && npm run tslint:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"tslint": "lb-tslint",
"tslint:fix": "npm run tslint -- --fix",
"start": "concurrently --kill-others \"npm run start:account\" \"npm run start:customer\" \"npm run start:transaction\" \"npm run start:facade\"",
"start:account": "cd ./services/account && npm run start",
"start:customer": "cd ./services/customer && npm run start",
"start:transaction": "cd ./services/transaction && npm run start",
"start:facade": "cd ./services/facade && npm run start",
"test": "npm run test:account && npm run test:customer && npm run test:transaction",
"test:account": "cd ./services/account && npm run test",
"test:customer": "cd ./services/customer && npm run test",
"test:transaction": "cd ./services/transaction && npm run test",
"test:concurrently": "concurrently --kill-others \"npm run test:account\" \"npm run test:customer\" \"npm run test:transaction\"",
"test:ts": "./bin/test",
"posttest": "npm run lint"
},
"engines": {
"node": ">=8"
},
"keywords": [
"loopback-next",
"example"
],
"author": "IBM Corp.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/strongloop/loopback4-example-microservices.git"
},
"bugs": {
"url": "https://github.com/strongloop/loopback4-example-microservices/issues"
},
"homepage": "https://github.com/strongloop/loopback4-example-microservices#readme",
"dependencies": {
"bluebird": "^3.5.0",
"mocha": "^5.0.3",
"ts-node": "^3.1.0",
"typescript": "^2.6.2"
},
"devDependencies": {
"@loopback/build": "^0.3.2",
"concurrently": "^3.5.1"
}
}