forked from FullStack-Itaguacu/M3P-BackEnd-Squad1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (33 loc) · 847 Bytes
/
package.json
File metadata and controls
34 lines (33 loc) · 847 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
32
33
34
{
"name": "M3P-BACKEND-SQUAD1",
"version": "1.0.0",
"description": "Backend projeto avaliativo M3-Squad : bugBusters ",
"main": "index.js",
"author": "bugBusters",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.1",
"pg": "^8.11.1",
"pg-connection-string": "^2.6.1",
"sequelize": "^6.32.1",
"swagger-autogen": "^2.23.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"nodemon": "^2.0.12",
"sequelize-cli": "^6.6.1"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest --coverage --silent --watchAll",
"start-gendoc": "node src/swagger.js",
"build" : "npm i"
}
}