Files
todo-list/server/package.json
João Geonizeli 82c078f5db add task
2022-07-09 14:28:36 -03:00

40 lines
994 B
JSON

{
"name": "server",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "rm -rf ./dist && concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"bcrypt": "^5.0.1",
"class-validator": "^0.13.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3",
"redis": "^4.2.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.7",
"uuid": "^8.3.2"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^18.0.3",
"@types/uuid": "^8.3.4",
"concurrently": "^7.2.2",
"jest": "^28.1.2",
"nodemon": "^2.0.19",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}