-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.27 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "express-ecommerce-api",
"version": "0.0.0",
"description": "Express E-commerce API",
"author": "Gustavo Morinaga <[email protected]>",
"keywords": [
"bcrypt",
"esbuild",
"eslint",
"express",
"jwt",
"mongodb",
"mongoose",
"nodemailer",
"pm2",
"prettier",
"swagger",
"typescript",
"zod"
],
"license": "MIT",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"dev": "tsx watch --ignore node_modules --ignore dist src",
"preview": "node dist/index.js",
"start": "pm2-runtime dist/index.js",
"build": "node esbuild.config.mjs",
"gen:docs": "node swagger.cjs",
"tsc": "tsc"
},
"dependencies": {
"bcryptjs": "2.4.3",
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"dotenv": "16.3.1",
"express": "4.18.2",
"express-rate-limit": "6.10.0",
"http-status": "1.6.2",
"jsonwebtoken": "9.0.2",
"mongoose": "7.5.0",
"mongoose-aggregate-paginate-v2": "1.0.6",
"mongoose-paginate-v2": "1.7.31",
"nodemailer": "6.9.4",
"pino-http": "8.4.0",
"pino-mongodb": "4.3.0",
"pino-pretty": "10.2.0",
"pm2": "5.3.0",
"swagger-autogen": "2.23.5",
"swagger-ui-express": "4.6.3",
"zod": "3.22.2"
},
"devDependencies": {
"@types/bcryptjs": "2.4.3",
"@types/compression": "1.7.2",
"@types/cookie-parser": "1.4.3",
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/jsonwebtoken": "9.0.2",
"@types/mongoose-aggregate-paginate-v2": "1.0.9",
"@types/node": "20.5.9",
"@types/nodemailer": "6.4.9",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"esbuild": "0.18.4",
"esbuild-plugin-clean": "1.0.1",
"esbuild-plugin-compress": "1.0.1",
"esbuild-plugin-copy": "2.1.1",
"esbuild-plugin-pino": "2.0.1",
"eslint": "8.48.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.8",
"prettier-eslint": "15.0.1",
"tsx": "3.12.8",
"typescript": "5.2.2",
"zod-validation-error": "1.5.0"
},
"engines": {
"node": ">=14.17.0 <=18.x.x",
"pnpm": ">=6.14.0"
},
"pnpm": {
"overrides": {
"word-wrap@<1.2.4": ">=1.2.4",
"mongodb@>=4.0.0 <4.17.0": ">=4.17.0",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"semver@>=7.0.0 <7.5.2": ">=7.5.2"
}
}
}