-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "api-citas-sequelize-ts",
"version": "1.0.0",
"description": "API básica para citas, doctores, pacientes con Express, Sequelize para MySQL y TypeScript",
"main": "index.js",
"scripts": {
"start": "tsc && nodemon dist/app.js",
"dev": "tsc && nodemon src/app.ts",
"swagger-autogen": "node swagger.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"API",
"REST",
"Citas",
"Sequelize",
"MySQL",
"Express",
"TypeScript"
],
"author": "Norbey Danilo Muñoz-Cañón",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mysql2": "^3.6.3",
"sequelize": "^6.35.0",
"sequelize-typescript": "^2.1.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.16",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/mysql": "^2.15.24",
"@types/node": "^20.9.1",
"@types/swagger-jsdoc": "^6.0.3",
"@types/swagger-ui-express": "^4.1.6",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}