ts-project/package.json
dependabot[bot] 0441ad43ec
Bump lint-staged from 11.2.6 to 12.4.1
Bumps [lint-staged](https://github.com/okonet/lint-staged) from 11.2.6 to 12.4.1.
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Commits](https://github.com/okonet/lint-staged/compare/v11.2.6...v12.4.1)

---
updated-dependencies:
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-16 04:56:05 +00:00

41 lines
1.2 KiB
JSON

{
"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 <sombochea@cubetiqs.com>",
"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"
}
}