express-nodejs-app/package.json
Sambo Chea 7a2c3dec97
All checks were successful
continuous-integration/drone/push Build is passing
Fixed lerna build
2021-09-16 18:25:11 +07:00

55 lines
1.6 KiB
JSON

{
"name": "@cubetiq/express-nodejs-app",
"version": "1.0.0",
"description": "Express, Nodejs application for micro-service",
"main": "dist/app.js",
"private": true,
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/app.ts",
"build": "lerna run build && rm -rf dist && tsc",
"serve": "yarn build && node dist/app.js",
"bootstrap": "lerna bootstrap",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://git.cubetiqs.com/CUBETIQ/express-nodejs-app.git"
},
"keywords": [
"Express",
"Nodejs",
"Typescript"
],
"author": "Sambo Chea <sombochea@cubetiqs.com>",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^36.0.8",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^7.0.2",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"prettier": "2.3.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2"
},
"dependencies": {
"@cubetiq/ts-common": "1.0.0",
"@cubetiq/express-server": "1.0.0",
"express": "^4.17.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"workspaces": [
"packages/*"
]
}