Files
TypeScript-Mayank-Template/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2024-12-06 01:01:25 +05:30
{
2024-12-10 20:57:52 +05:30
"name": "tanami-backend",
"version": "v1.0.0",
"main": "src/index.ts",
"author": "Swapnil Bendal",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/index.ts",
"start": "ts-node src/index.ts",
"typeorm": "cross-env NODE_ENV=development typeorm-ts-node-commonjs",
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"prepare": "husky"
},
"dependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"inversify": "^6.1.4",
"morgan": "^1.10.0",
"mysql": "^2.14.1",
"reflect-metadata": "^0.1.13",
"request-ip": "^3.3.0",
"typeorm": "0.3.20",
"winston": "^3.17.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/node": "^16.11.10",
"@types/request-ip": "^0.0.41",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^9.16.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"nodemon": "^3.1.7",
"ts-node": "10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
2024-12-06 01:01:25 +05:30
}