-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 958 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": "techengue_backend",
"version": "1.0.0",
"description": "This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest -verbose --all --coverage",
"migrate": "sequelize-cli db:migrate --config src/config/config.js",
"deploy": "yarn install && yarn migrate"
},
"config": {
"configPath": "./config/database.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-jwt": "5.3.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"pg": "^8.13.1",
"sequelize": "^6.37.5"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"sequelize-cli": "^6.6.2",
"supertest": "^7.0.0"
}
}