-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "api-donkampo",
"version": "1.0.0",
"description": "API",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon src/ --exec ./node_modules/.bin/babel-node",
"build": "npx babel src --out-dir dist ",
"start": "node dist/index.js",
"migration": "node src/migration/migrate.js"
},
"author": "Andres Betancourt O",
"license": "ISC",
"dependencies": {
"@angular/cdk": "^17.3.10",
"@angular/material": "^17.3.10",
"@aws-sdk/client-s3": "^3.693.0",
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-async-to-generator": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-fileupload": "^1.5.1",
"express-validator": "^7.2.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^5.0.8",
"nodemailer": "^6.9.16",
"pg": "^8.12.0",
"sharp": "^0.33.5"
},
"devDependencies": {
"nodemon": "^3.1.4"
},
"engines": {
"node": "20.x",
"npm": "10.x"
}
}