-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.92 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.92 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "express-sequelize-api",
"version": "1.0.1",
"description": "Welcome to the Express Sequelize API repository! This project is a robust and scalable RESTful API built using Express.js and Sequelize. It provides a clean and efficient backend solution for managing data and handling various API requests in a Node.js environment",
"main": "app.js",
"private": true,
"scripts": {
"start": "node app.js",
"start-dev": "nodemon app.js",
"build": "webpack",
"lint": "eslint .",
"prod": "node dist/bundle.js",
"test": "jest --detectOpenHandles --coverage --reporters=jest-junit"
},
"repository": {
"type": "git",
"url": "https://github.com/jsuyog2/express-sequelize-api"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"api",
"express",
"sequelize",
"node.js",
"backend"
],
"author": "Suyog Jadhav",
"license": "ISC",
"bugs": {
"url": "https://github.com/jsuyog2/express-sequelize-api/issues"
},
"homepage": "https://github.com/jsuyog2/express-sequelize-api#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eslint-plugin-jest": "^28.8.0",
"express": "^4.21.0",
"express-validator": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.14",
"pg": "^8.12.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"webpack": "^5.94.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"node-mocks-http": "^1.15.1",
"nodemailer-mock": "^2.0.6",
"supertest": "^7.0.0",
"webpack-cli": "^5.1.4"
}
}