expresss-ts
Version:
CLI to create an Express TypeScript starter project
44 lines (43 loc) • 1.05 kB
JSON
{
"name": "expresss-ts",
"version": "1.0.7",
"description": "CLI to create an Express TypeScript starter project",
"main": "dist/index.js",
"bin": {
"expresss-ts": "./bin/expresss-ts.js"
},
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "nodemon --exec ts-node src/index.ts",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"keywords": [
"create-express-ts-starter",
"taraksh01",
"express",
"typescript",
"starter",
"cli"
],
"author": "Tarak Shaw",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.12.0",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}