-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d7eae63
commit 55265b1
Showing
6 changed files
with
4,869 additions
and
970 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
yarn pre-commit | ||
pnpm lint-staged |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,66 @@ | ||
{ | ||
"name": "nodejs-typescript-boilerplate", | ||
"version": "0.0.1", | ||
"description": "nodejs-typescript-boilerplate", | ||
"main": "./dist/src/index.js", | ||
"types": "./dist/src/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/sweatpotato13/nodejs-typescript-boilerplate.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/sweatpotato13/nodejs-typescript-boilerplate/issues" | ||
}, | ||
"homepage": "https://github.com/sweatpotato13/nodejs-typescript-boilerplate", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"test": "jest", | ||
"test:cov": "jest --coverage", | ||
"start:dev": "ts-node-dev --poll --respawn --transpile-only src/index.ts --trace-sync-io", | ||
"start:prod": "ts-node src/index.ts", | ||
"lint": "eslint \"{src,test}/**/*.ts\" --fix", | ||
"prettier": "prettier --write --config .prettierrc \"{src,test}/**/*.ts\"", | ||
"build": "tsc", | ||
"prebuild": "rimraf ./dist", | ||
"install": "husky init", | ||
"pre-commit": "lint-staged", | ||
"prepare": "husky" | ||
}, | ||
"lint-staged": { | ||
"*.{ts,tsx,js,jsx}": [ | ||
"yarn run eslint --fix" | ||
"name": "nodejs-typescript-boilerplate", | ||
"version": "0.0.1", | ||
"description": "nodejs-typescript-boilerplate", | ||
"main": "./dist/src/index.js", | ||
"types": "./dist/src/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/sweatpotato13/nodejs-typescript-boilerplate.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/sweatpotato13/nodejs-typescript-boilerplate/issues" | ||
}, | ||
"homepage": "https://github.com/sweatpotato13/nodejs-typescript-boilerplate", | ||
"files": [ | ||
"dist" | ||
], | ||
"*.{md,json}": [ | ||
"prettier --write" | ||
] | ||
}, | ||
"author": "Cute_Wisp <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@commitlint/cli": "^19.4.1", | ||
"@commitlint/config-conventional": "^19.4.1", | ||
"@eslint/js": "^9.10.0", | ||
"@swc/core": "1.7.23", | ||
"@swc/helpers": "^0.5.13", | ||
"@types/eslint__js": "^8.42.3", | ||
"@types/jest": "29.5.12", | ||
"@types/node": "^22.5.4", | ||
"eslint": "^9.10.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-security": "^3.0.1", | ||
"eslint-plugin-simple-import-sort": "^12.1.1", | ||
"husky": "9.1.5", | ||
"jest": "29.7.0", | ||
"lint-staged": "^15.2.10", | ||
"prettier": "^3.3.3", | ||
"rimraf": "^6.0.1", | ||
"ts-jest": "29.2.5", | ||
"ts-node": "^10.9.2", | ||
"ts-node-dev": "^2.0.0", | ||
"typescript": "5.5.4", | ||
"typescript-eslint": "8.4.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
"scripts": { | ||
"test": "jest", | ||
"test:cov": "jest --coverage", | ||
"start:dev": "ts-node-dev --poll --respawn --transpile-only src/index.ts --trace-sync-io", | ||
"start:prod": "ts-node src/index.ts", | ||
"lint": "eslint \"{src,test}/**/*.ts\" --fix", | ||
"prettier": "prettier --write --config .prettierrc \"{src,test}/**/*.ts\"", | ||
"build": "tsc", | ||
"prebuild": "rimraf ./dist", | ||
"install": "husky init", | ||
"pre-commit": "lint-staged", | ||
"prepare": "husky" | ||
}, | ||
"lint-staged": { | ||
"*.{ts,tsx,js,jsx}": [ | ||
"yarn run eslint --fix" | ||
], | ||
"*.{md,json}": [ | ||
"prettier --write" | ||
] | ||
}, | ||
"author": "Cute_Wisp <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@commitlint/cli": "^19.4.1", | ||
"@commitlint/config-conventional": "^19.4.1", | ||
"@eslint/js": "^9.10.0", | ||
"@swc/core": "1.7.23", | ||
"@swc/helpers": "^0.5.13", | ||
"@types/eslint__js": "^8.42.3", | ||
"@types/jest": "29.5.12", | ||
"@types/node": "^22.5.4", | ||
"eslint": "^9.10.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-security": "^3.0.1", | ||
"eslint-plugin-simple-import-sort": "^12.1.1", | ||
"globals": "^15.11.0", | ||
"husky": "9.1.5", | ||
"jest": "29.7.0", | ||
"lint-staged": "^15.2.10", | ||
"prettier": "^3.3.3", | ||
"rimraf": "^6.0.1", | ||
"ts-jest": "29.2.5", | ||
"ts-node": "^10.9.2", | ||
"ts-node-dev": "^2.0.0", | ||
"typescript": "5.5.4", | ||
"typescript-eslint": "8.4.0" | ||
} | ||
} |
Oops, something went wrong.