@profitsniper/email
Version:
While developing with Typescript and Node.js is awesome, **setting up a new project is painful**. This minimal and modern starter repo is here to help you get started with Node.js and Typecript without the pain.
59 lines • 1.59 kB
JSON
{
"name": "@profitsniper/email",
"version": "1.0.1",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"type": "commonjs",
"keywords": [
"nodejs",
"typescript",
"modern",
"starter",
"nodejs typescript modern starter",
"debugging",
"ts",
"esbuild",
"prettier",
"typescript5",
"CI/CD",
"minimal"
],
"author": "Takin-Profit <takinprofit@gmail.com>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node20": "20.1.2",
"@types/node": "20.10.5",
"@types/nodemailer": "^6.4.14",
"@types/nodemon": "1.19.6",
"@types/shelljs": "0.8.15",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"concurrently": "7.6.0",
"esbuild": "0.19.10",
"eslint": "8.56.0",
"eslint-config-prettier": "8.10.0",
"nodemon": "2.0.22",
"prettier": "3.1.1",
"shelljs": "0.8.5",
"typescript": "5.3.3"
},
"dependencies": {
"@profitsniper/shared": "^1.0.34",
"fast-safe-stringify": "^2.1.1",
"nodemailer": "^6.9.9"
},
"scripts": {
"build": "node tasks.mjs build",
"bundle": "node tasks.mjs bundle",
"clean": "node tasks.mjs clean",
"dev": "concurrently \"npm:watch-*\"",
"format": "node tasks.mjs format --write",
"format-check": "node tasks.mjs format --check",
"lint": "node tasks.mjs lint --fix",
"lint-check": "node tasks.mjs lint",
"start": "node tasks.mjs start",
"test": "node tasks.mjs test",
"watch-node": "node tasks.mjs watch-node",
"watch-ts": "node tasks.mjs watch-ts"
}
}