-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 812 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 812 Bytes
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
{
"name": "nodejs-api",
"version": "0.0.1",
"description": "API Rest hecha en node con mongodb",
"main": "index.js",
"repository": "git@github.com:kasbed/nodejs-api.git",
"author": "Ner <albertom359@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "concurrently \"tsc -w\" \"nodemon dist/js/app.js\""
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.5",
"typescript": "^4.9.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.11.9",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20"
}
}