summaryrefslogtreecommitdiffstats
path: root/cds-ui/server/package.json
blob: 96639391f4e3281d918a032f8b2dd6e28626e8ae (plain)
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
61
62
63
{
  "name": "cds-ui-server",
  "version": "1.0.0",
  "description": "Intermediate layer between UI and backend. Implemented in loopback 4",
  "keywords": [
    "loopback-application",
    "loopback"
  ],
  "main": "index.js",
  "engines": {
    "node": ">=8.9"
  },
  "scripts": {
    "build:apidocs": "lb-apidocs",
    "build": "lb-tsc es2017 --outDir dist",
    "build:watch": "lb-tsc --watch",
    "clean": "lb-clean dist",
    "lint": "npm run prettier:check && npm run tslint",
    "lint:fix": "npm run tslint:fix && npm run prettier: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",
    "pretest": "npm run clean && npm run build",
    "test": "lb-mocha --allow-console-logs \"dist/test\"",
    "posttest": "npm run lint",
    "test:dev": "lb-mocha --allow-console-logs dist/test/**/*.js && npm run posttest",
    "migrate": "node ./dist/src/migrate",
    "prestart": "npm run build",
    "start": "node .",
    "prepublishOnly": "npm run test"
  },
  "repository": {
    "type": "git"
  },
  "author": "",
  "license": "",
  "files": [
    "README.md",
    "index.js",
    "index.d.ts",
    "dist/src",
    "dist/index*",
    "src"
  ],
  "dependencies": {
    "@loopback/boot": "^1.0.8",
    "@loopback/context": "^1.4.0",
    "@loopback/core": "^1.1.3",
    "@loopback/openapi-v3": "^1.1.5",
    "@loopback/repository": "^1.1.1",
    "@loopback/rest": "^1.5.1",
    "@loopback/rest-explorer": "^1.1.4",
    "@loopback/service-proxy": "^1.0.5"
  },
  "devDependencies": {
    "@loopback/build": "^1.1.0",
    "@loopback/testlab": "^1.0.3",
    "@loopback/tslint-config": "^1.0.0",
    "@types/node": "^10.11.2"
  }
}