81 lines
2.1 KiB
JSON
81 lines
2.1 KiB
JSON
{
|
|
"name": "redplateaus",
|
|
"version": "1.0.0",
|
|
"description": "Red Plateaus microservices",
|
|
"scripts": {
|
|
"build": "tsc --build tsconfig.json",
|
|
"dev": "ts-node ./node_modules/moleculer/bin/moleculer-runner.js -e --hot --repl --config moleculer.config.ts services/**/*.service.ts",
|
|
"start": "moleculer-runner",
|
|
"cli": "moleculer connect ",
|
|
"ci": "jest --watch",
|
|
"test": "jest --coverage",
|
|
"lint": "eslint --ext .js,.ts .",
|
|
"dc:up": "docker-compose up --build -d",
|
|
"dc:logs": "docker-compose logs -f",
|
|
"dc:down": "docker-compose down"
|
|
},
|
|
"keywords": [
|
|
"microservices",
|
|
"moleculer"
|
|
],
|
|
"author": "",
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^2.26.0",
|
|
"@typescript-eslint/parser": "^2.26.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"eslint-plugin-prefer-arrow": "^1.2.2",
|
|
"jest": "^26.6.3",
|
|
"jest-cli": "^25.1.0",
|
|
"moleculer-repl": "^0.6.2",
|
|
"ts-jest": "^26.5.1",
|
|
"ts-node": "^8.8.1",
|
|
"ts-toolbelt": "^9.5.10"
|
|
},
|
|
"dependencies": {
|
|
"@admin-bro/express": "^3.1.0",
|
|
"@admin-bro/mongoose": "^1.1.0",
|
|
"@types/jest": "^25.1.4",
|
|
"@types/mkdirp": "^1.0.0",
|
|
"@types/node": "^13.9.8",
|
|
"@types/ramda": "^0.27.39",
|
|
"admin-bro": "^3.4.0",
|
|
"admin-bro-theme-dark": "^1.0.0",
|
|
"avsc": "^5.5.3",
|
|
"dotenv": "^8.2.0",
|
|
"express": "^4.17.1",
|
|
"googleapis": "^67.0.0",
|
|
"moleculer": "^0.14.0",
|
|
"moleculer-db": "^0.8.4",
|
|
"moleculer-db-adapter-mongo": "^0.4.7",
|
|
"moleculer-db-adapter-mongoose": "^0.8.9",
|
|
"moleculer-web": "^0.10.0-beta1",
|
|
"ramda": "^0.27.1",
|
|
"shrink-ray-current": "^4.1.2",
|
|
"typescript": "4.1"
|
|
},
|
|
"engines": {
|
|
"node": ">= 10.x.x"
|
|
},
|
|
"jest": {
|
|
"coverageDirectory": "<rootDir>/coverage",
|
|
"testEnvironment": "node",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js"
|
|
],
|
|
"transform": {
|
|
"^.+\\.(ts|tsx)$": "ts-jest"
|
|
},
|
|
"testMatch": [
|
|
"**/*.spec.(ts|js)"
|
|
],
|
|
"globals": {
|
|
"ts-jest": {
|
|
"tsConfig": "tsconfig.json"
|
|
}
|
|
}
|
|
}
|
|
}
|