create-tin
Version:
Scaffold a TypeScript or JavaScript Express boilerplate
56 lines (55 loc) • 1.32 kB
JSON
{
"name": "express-app-ts",
"version": "1.0.0",
"description": "Express.js TypeScript authentication API template",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"type-check": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"express",
"typescript",
"authentication",
"jwt",
"mongodb",
"mongoose",
"api"
],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"mongoose": "^8.0.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.8.0",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/cors": "^2.8.17",
"@types/validator": "^13.11.7",
"typescript": "^5.2.2",
"tsx": "^4.0.0",
"rimraf": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}