You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
1 year ago
|
{
|
||
|
"name": "node-typescript-boilerplate",
|
||
|
"version": "0.0.0",
|
||
|
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
|
||
|
"type": "module",
|
||
|
"engines": {
|
||
|
"node": ">= 18.12 <19"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/jest": "~29.5",
|
||
|
"@types/node": "~18",
|
||
|
"@typescript-eslint/eslint-plugin": "~6.2",
|
||
|
"@typescript-eslint/parser": "~6.2",
|
||
|
"eslint": "~8.46",
|
||
|
"eslint-config-prettier": "~9.0",
|
||
|
"eslint-plugin-jest": "~27.2",
|
||
|
"jest": "~29.6",
|
||
|
"prettier": "~3.0",
|
||
|
"rimraf": "~5.0",
|
||
|
"ts-api-utils": "~1.0",
|
||
|
"ts-jest": "~29.1",
|
||
|
"typescript": "~5.1"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"start": "node build/src/main.js",
|
||
|
"clean": "rimraf coverage build tmp",
|
||
|
"prebuild": "npm run lint",
|
||
|
"build": "tsc -p tsconfig.json",
|
||
|
"build:watch": "tsc -w -p tsconfig.json",
|
||
|
"build:release": "npm run clean && tsc -p tsconfig.release.json",
|
||
|
"lint": "eslint . --ext .ts --ext .mts",
|
||
|
"test": "jest --coverage",
|
||
|
"prettier": "prettier --config .prettierrc --write .",
|
||
|
"test:watch": "jest --watch"
|
||
|
},
|
||
|
"author": "Jakub Synowiec <jsynowiec@users.noreply.github.com>",
|
||
|
"license": "Apache-2.0",
|
||
|
"dependencies": {
|
||
|
"tslib": "~2.6"
|
||
|
},
|
||
|
"volta": {
|
||
|
"node": "18.12.1"
|
||
|
}
|
||
|
}
|