-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "nodejs-rest-api",
"version": "1.0.0",
"description": "A ready-to-use boilerplate for REST API Development with Node.js, Express, and PostgreSQL",
"main": "index.js",
"scripts": {
"test": "jest -i --colors --verbose --detectOpenHandles",
"start": "nodemon index.js",
"postinstall": "cp .env-example .env"
},
"author": "Mangesh Ghadigaonkar",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.21",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"supertest": "^6.3.4"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-validator": "^7.2.0",
"helmet": "^7.2.0",
"http-status": "^1.8.1",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mysql2": "^3.11.3",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.5",
"sequelize-cli": "^6.6.3"
}
}