-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.57 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "first-ProjectNode",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files",
"dev:server": "ts-node-dev -r tsconfig-paths/register --inspect --ignore-watch node_modules src/shared/infra/http/server.ts",
"start": "ts-node src/shared/infra/http/server.ts",
"typeorm": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"test": "jest"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.696.0",
"@aws-sdk/client-ses": "^3.696.0",
"@types/cors": "^2.8.17",
"@types/redis": "^4.0.11",
"bcryptjs": "^2.4.3",
"celebrate": "^15.0.3",
"class-transformer": "^0.5.1",
"cors": "^2.8.5",
"date-fns": "^3.3.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"handlebars": "^4.7.8",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"mime": "^4.0.4",
"mime-types": "^2.1.35",
"mongodb": "^6.9.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.16",
"pg": "^8.12.0",
"rate-limiter-flexible": "^5.0.4",
"redis": "^4.7.0",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.8.0",
"typeorm": "^0.3.20",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/hapi__joi": "^17.1.14",
"@types/ioredis": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongodb": "^4.0.7",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.9",
"@types/nodemailer": "^6.4.16",
"@types/passport": "^1.0.16",
"@typescript-eslint/eslint-plugin": "6.4.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-n": "15.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "6.0.0",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.2"
}
}