pinguin/package.json
2023-10-03 21:51:37 +02:00

37 lines
892 B
JSON

{
"name": "pinguin",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "./node_modules/typescript/bin/tsc",
"start": "node ./lib/app.js",
"lint:fix": "eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.18",
"@types/node": "^20.7.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"ioredis": "^5.3.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"bullmq": "^4.12.0",
"chalk": "^5.3.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"node-fetch": "^3.3.2",
"pino": "^6.14.0",
"pino-pretty": "^10.2.0"
},
"type": "module"
}