-
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) · 767 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 767 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": "api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "pm2-runtime start ecosystem.config.js --env production",
"dev": "nodemon ./src/server.js",
"migrate": "knex migrate:latest",
"test": "jest"
},
"author": "Iury Escano Cordeiro",
"license": "ISC",
"description": "API desenvolvida no programa Explorer da RockeatSeat",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"multer": "^1.4.5-lts.1",
"pm2": "^5.4.2",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.4"
}
}