-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.8 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
57
{
"name": "udemy-api-vendas-node",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/antoniodecastroalves/udemy-api-vendas-node.git",
"author": "“Antonio <“antoniodecastroalves@gmail.com”>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules src/shared/http/server.ts",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/ioredis": "^5.0.0",
"@types/joi": "14.3.4",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.11",
"@types/redis": "^4.0.11",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.2.0",
"prettier": "^2.8.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.3"
},
"dependencies": {
"@types/nodemailer": "^6.4.7",
"bcryptjs": "^2.4.3",
"celebrate": "13.0.4",
"class-transformer": "^0.5.1",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"handlebars": "^4.7.7",
"ioredis": "^5.3.1",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.1",
"pg": "^8.9.0",
"rate-limiter-flexible": "^2.4.1",
"redis": "^4.6.5",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.29",
"typeorm-pagination": "^2.0.3"
}
}