-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 947 Bytes
/
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
{
"name": "backendItalents",
"version": "1.0.0",
"description": "projeto backend para italents",
"main": "index.js",
"author": "leonardo valle",
"license": "MIT",
"scripts": {
"start": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.14",
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "6.6.5",
"mysql2": "^3.6.1",
"swagger-ui-express": "^5.0.0",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/express": "^4.17.18",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.8.0",
"@types/swagger-ui-express": "^4.1.5",
"@types/uuidv4": "^5.0.0",
"concurrently": "^8.2.1",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
}
}