45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "express-nodejs-app",
|
|
"version": "1.0.0",
|
|
"description": "Express, Nodejs application for service",
|
|
"main": "dist/app.js",
|
|
"scripts": {
|
|
"start": "ts-node-dev --respawn --transpile-only src/app.ts",
|
|
"build": "rm -rf dist && tsc",
|
|
"serve": "npm run build && node dist/app.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"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",
|
|
"@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": {
|
|
"express": "^4.17.1"
|
|
},
|
|
"lint-staged": {
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
}
|
|
}
|