{ "name": "@cubetiq/ts-project", "version": "1.0.0", "description": "TS project template", "main": "dist/index.js", "scripts": { "start": "ts-node-dev --respawn --transpile-only src/index.ts", "build": "rm -rf dist && tsc", "serve": "npm run build && node dist/index.js", "test": "echo \"Error: no test specified\" && exit 1", "prepare": "husky install" }, "repository": { "type": "git", "url": "https://git.cubetiqs.com/CUBETIQ/ts-project.git" }, "keywords": [ "TypeScript", "Nodejs" ], "author": "Sambo Chea ", "license": "ISC", "devDependencies": { "@typescript-eslint/eslint-plugin": "^4.30.0", "@typescript-eslint/parser": "^4.30.0", "eslint": "^8.15.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-jsdoc": "^39.2.9", "eslint-plugin-prefer-arrow": "^1.2.3", "husky": "^8.0.1", "lint-staged": "^12.4.1", "prettier": "2.3.2", "ts-node-dev": "^1.1.8", "typescript": "^4.4.2", "@types/node": "^17.0.33" }, "lint-staged": { "**/*": "prettier --write --ignore-unknown" } }