-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 763 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 763 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": "node-auth-backend",
"version": "1.0.0",
"description": "A basic authentication backend project with Node.js and PostgreSQL",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"init-db": "node src/config/initDatabase.js"
},
"keywords": [
"nodejs",
"authentication",
"postgresql",
"express",
"jwt"
],
"author": "",
"type": "commonjs",
"license": "MIT",
"dependencies": {
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"express-validator": "^7.3.1",
"jsonwebtoken": "^9.0.3",
"pg": "^8.16.3"
},
"devDependencies": {
"nodemon": "^3.1.11"
}
}