Arundathi Patil | 85db5b0 | 2019-01-17 14:10:08 +0530 | [diff] [blame] | 1 | { |
Ezhilarasi | e4b82f7 | 2019-04-04 21:06:09 +0530 | [diff] [blame^] | 2 | "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", |
| 15 | "build": "lb-tsc es2017 --outDir dist", |
| 16 | "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 .", |
| 32 | "prepublishOnly": "npm run test" |
| 33 | }, |
| 34 | "repository": { |
| 35 | "type": "git" |
| 36 | }, |
| 37 | "author": "", |
| 38 | "license": "", |
| 39 | "files": [ |
| 40 | "README.md", |
| 41 | "index.js", |
| 42 | "index.d.ts", |
| 43 | "dist/src", |
| 44 | "dist/index*", |
| 45 | "src" |
| 46 | ], |
| 47 | "dependencies": { |
| 48 | "@loopback/boot": "^1.0.8", |
| 49 | "@loopback/context": "^1.4.0", |
| 50 | "@loopback/core": "^1.1.3", |
| 51 | "@loopback/openapi-v3": "^1.1.5", |
| 52 | "@loopback/repository": "^1.1.1", |
| 53 | "@loopback/rest": "^1.5.1", |
| 54 | "@loopback/rest-explorer": "^1.1.4", |
| 55 | "@loopback/service-proxy": "^1.0.8", |
| 56 | "@types/form-data": "^2.2.1", |
| 57 | "@types/jszip": "^3.1.5", |
| 58 | "bluebird": "^3.5.3", |
| 59 | "cors": "^2.8.5", |
| 60 | "file": "^0.2.2", |
| 61 | "file-system": "^2.2.2", |
| 62 | "filereader": "^0.10.3", |
| 63 | "form-data": "^2.3.3", |
| 64 | "formidable": "^1.2.1", |
| 65 | "fs": "0.0.1-security", |
| 66 | "jszip": "^3.2.1", |
| 67 | "loopback-connector-rest": "^3.4.1", |
| 68 | "multer": "^1.4.1", |
| 69 | "multiparty": "^4.2.1", |
| 70 | "nodemon": "^1.18.10" |
| 71 | }, |
| 72 | "devDependencies": { |
| 73 | "@loopback/build": "^1.1.0", |
| 74 | "@loopback/testlab": "^1.0.3", |
| 75 | "@loopback/tslint-config": "^2.0.3", |
| 76 | "@types/bluebird": "^3.5.26", |
| 77 | "@types/formidable": "^1.0.31", |
| 78 | "@types/multer": "^1.3.7", |
| 79 | "@types/multiparty": "0.0.32", |
| 80 | "@types/node": "^10.11.2", |
| 81 | "@types/request": "^2.48.1" |
| 82 | } |
Arundathi Patil | 85db5b0 | 2019-01-17 14:10:08 +0530 | [diff] [blame] | 83 | } |