-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 867 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 867 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
35
36
{
"name": "backend",
"version": "1.0.0",
"description": "Fullstack CRUD (Backend)",
"main": "app.js",
"scripts": {
"start": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nizomiddin-Valijanov/Fullstack-CRUD-Node.js.git"
},
"keywords": [
"CRUD",
"node.js",
"express.js"
],
"author": "Nizomiddin Valijanov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nizomiddin-Valijanov/Fullstack-CRUD-Node.js/issues"
},
"homepage": "https://github.com/Nizomiddin-Valijanov/Fullstack-CRUD-Node.js#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.2"
},
"devDependencies": {
"nodemon": "^3.1.5"
}
}