blob: 8abadb15b8e88e8fa348122dd6c7f304d0f371c6 [file] [log] [blame]
Arundathi Patil85db5b02019-01-17 14:10:08 +05301{
Ezhilarasie4b82f72019-04-04 21:06:09 +05302 "name": "cds-ui-server",
3 "version": "1.0.0",
4 "description": "Intermediate layer between UI and backend. Implemented in loopback 4",
5 "keywords": [
6 "loopback-application",
7 "loopback"
8 ],
9 "main": "index.js",
10 "engines": {
11 "node": ">=8.9"
12 },
13 "scripts": {
14 "build:apidocs": "lb-apidocs",
Nirvan Ramjuttun2ac64f22019-05-30 14:07:23 -040015 "build": "npm run copy:proto && lb-tsc es2017 --copy-resources --outDir dist",
Ezhilarasie4b82f72019-04-04 21:06:09 +053016 "build:watch": "lb-tsc --watch",
17 "clean": "lb-clean dist",
18 "lint": "npm run prettier:check && npm run tslint",
19 "lint:fix": "npm run tslint:fix && npm run prettier:fix",
20 "prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
21 "prettier:check": "npm run prettier:cli -- -l",
22 "prettier:fix": "npm run prettier:cli -- --write",
23 "tslint": "lb-tslint",
24 "tslint:fix": "npm run tslint -- --fix",
25 "pretest": "npm run clean && npm run build",
26 "test": "lb-mocha --allow-console-logs \"dist/test\"",
27 "posttest": "npm run lint",
28 "test:dev": "lb-mocha --allow-console-logs dist/test/**/*.js && npm run posttest",
29 "migrate": "node ./dist/src/migrate",
30 "prestart": "npm run build",
31 "start": "node .",
Nirvan Ramjuttun2ac64f22019-05-30 14:07:23 -040032 "prepublishOnly": "npm run test",
Ezhilarasi0cdea532019-07-16 23:59:14 +053033 "copy:proto": "mkdir -p dist && cp -R target/generated/proto-definition/proto/ dist/proto"
Ezhilarasie4b82f72019-04-04 21:06:09 +053034 },
35 "repository": {
36 "type": "git"
37 },
38 "author": "",
39 "license": "",
40 "files": [
41 "README.md",
42 "index.js",
43 "index.d.ts",
44 "dist/src",
45 "dist/index*",
46 "src"
47 ],
48 "dependencies": {
Nirvan Ramjuttun2ac64f22019-05-30 14:07:23 -040049 "@grpc/proto-loader": "^0.5.1",
Ezhilarasie4b82f72019-04-04 21:06:09 +053050 "@loopback/boot": "^1.0.8",
Rami17411022019-05-27 17:23:37 +020051 "@loopback/context": "^1.16.0",
Ezhilarasie4b82f72019-04-04 21:06:09 +053052 "@loopback/core": "^1.1.3",
53 "@loopback/openapi-v3": "^1.1.5",
54 "@loopback/repository": "^1.1.1",
55 "@loopback/rest": "^1.5.1",
56 "@loopback/rest-explorer": "^1.1.4",
57 "@loopback/service-proxy": "^1.0.8",
58 "@types/form-data": "^2.2.1",
59 "@types/jszip": "^3.1.5",
Nirvan Ramjuttun2ac64f22019-05-30 14:07:23 -040060 "@types/uuid": "^3.4.4",
Ezhilarasie4b82f72019-04-04 21:06:09 +053061 "bluebird": "^3.5.3",
62 "cors": "^2.8.5",
63 "file": "^0.2.2",
64 "file-system": "^2.2.2",
65 "filereader": "^0.10.3",
66 "form-data": "^2.3.3",
67 "formidable": "^1.2.1",
68 "fs": "0.0.1-security",
Nirvan Ramjuttun2ac64f22019-05-30 14:07:23 -040069 "grpc": "^1.21.1",
Ezhilarasie4b82f72019-04-04 21:06:09 +053070 "jszip": "^3.2.1",
71 "loopback-connector-rest": "^3.4.1",
72 "multer": "^1.4.1",
73 "multiparty": "^4.2.1",
Rami17411022019-05-27 17:23:37 +020074 "nodemon": "^1.18.10",
Nirvan Ramjuttun2ac64f22019-05-30 14:07:23 -040075 "uuid": "^3.3.2",
Rami17411022019-05-27 17:23:37 +020076 "winston": "^3.2.1"
Ezhilarasie4b82f72019-04-04 21:06:09 +053077 },
78 "devDependencies": {
Rami17411022019-05-27 17:23:37 +020079 "@loopback/build": "^1.5.5",
Ezhilarasie4b82f72019-04-04 21:06:09 +053080 "@loopback/testlab": "^1.0.3",
81 "@loopback/tslint-config": "^2.0.3",
82 "@types/bluebird": "^3.5.26",
83 "@types/formidable": "^1.0.31",
84 "@types/multer": "^1.3.7",
85 "@types/multiparty": "0.0.32",
86 "@types/node": "^10.11.2",
87 "@types/request": "^2.48.1"
88 }
Timoney, Dan (dt5972)dfe52052019-07-17 11:07:44 -040089}