75 lines
2.3 KiB
JSON
75 lines
2.3 KiB
JSON
{
|
|
"name": "stock-recording",
|
|
"version": "1.0.0",
|
|
"description": "API to record stock market data.",
|
|
"keywords": [
|
|
"loopback-application",
|
|
"loopback"
|
|
],
|
|
"main": "index.js",
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"scripts": {
|
|
"build": "lb-tsc",
|
|
"build:watch": "lb-tsc --watch",
|
|
"lint": "npm run prettier:check && npm run eslint",
|
|
"lint:fix": "npm run eslint: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",
|
|
"eslint": "lb-eslint --report-unused-disable-directives .",
|
|
"eslint:fix": "npm run eslint -- --fix",
|
|
"pretest": "npm run clean && npm run build",
|
|
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
|
|
"posttest": "npm run lint",
|
|
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
|
|
"docker:build": "docker build -t stock-recording .",
|
|
"docker:run": "docker run -p 3000:3000 -d stock-recording",
|
|
"migrate": "node ./dist/migrate",
|
|
"prestart": "npm run build",
|
|
"start": "node -r source-map-support/register .",
|
|
"clean": "lb-clean dist *.tsbuildinfo .eslintcache"
|
|
},
|
|
"repository": {
|
|
"type": "git"
|
|
},
|
|
"author": "",
|
|
"license": "",
|
|
"files": [
|
|
"README.md",
|
|
"index.js",
|
|
"index.d.ts",
|
|
"dist",
|
|
"src",
|
|
"!*/__tests__"
|
|
],
|
|
"dependencies": {
|
|
"@loopback/authentication": "^4.1.3",
|
|
"@loopback/boot": "^2.0.4",
|
|
"@loopback/context": "^3.4.0",
|
|
"@loopback/core": "^2.3.0",
|
|
"@loopback/openapi-v3": "^3.1.3",
|
|
"@loopback/repository": "^2.1.1",
|
|
"@loopback/rest": "^3.2.1",
|
|
"@loopback/rest-explorer": "^2.0.4",
|
|
"@loopback/service-proxy": "^2.0.4",
|
|
"loopback-connector-mysql": "^5.4.3",
|
|
"tslib": "^1.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@loopback/build": "^5.0.1",
|
|
"source-map-support": "^0.5.16",
|
|
"@loopback/testlab": "^3.0.1",
|
|
"@types/node": "^10.17.19",
|
|
"@typescript-eslint/parser": "^2.27.0",
|
|
"@typescript-eslint/eslint-plugin": "^2.27.0",
|
|
"@loopback/eslint-config": "^6.0.3",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.10.1",
|
|
"eslint-plugin-eslint-plugin": "^2.2.1",
|
|
"eslint-plugin-mocha": "^6.3.0",
|
|
"typescript": "~3.8.3"
|
|
}
|
|
}
|