-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.72 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "api_restful",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules src/shared/infra/http/server.ts",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js "
},
"dependencies": {
"bcryptjs": "^2.4.3",
"celebrate": "^15.0.0",
"class-transformer": "^0.3.1",
"date-fns": "^2.27.0",
"dotenv": "^10.0.0",
"express-async-errors": "^3.1.1",
"handlebars": "^4.7.7",
"ioredis": "^4.28.2",
"jwt": "^0.2.0",
"multer": "^1.4.3",
"nodemailer": "^6.7.2",
"pg": "^8.7.1",
"rate-limiter-flexible": "^2.3.6",
"redis": "3.0.2",
"reflect-metadata": "^0.1.10",
"ts-node-dev": "^1.1.8",
"tsyringe": "^4.6.0",
"typeorm": "0.2.41",
"typeorm-pagination": "^2.0.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.2",
"@types/jest": "^27.0.3",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.11",
"@types/nodemailer": "^6.4.4",
"@types/redis": "^2.8.32",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.2.0",
"jest": "^27.4.3",
"prettier": "^2.5.0",
"ts-node": "3.3.0",
"tsconfig-paths": "^3.12.0",
"typescript": "4.1.2"
}
}