54 lines
1.6 KiB
JSON
54 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": "rm -rf dist && tsc",
|
|
"serve": "yarn run 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"
|
|
],
|
|
"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",
|
|
"express": "^4.17.1",
|
|
"reflect-metadata": "^0.1.13"
|
|
},
|
|
"lint-staged": {
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
]
|
|
}
|