-
Notifications
You must be signed in to change notification settings - Fork 496
/
package.json
32 lines (32 loc) · 953 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
{
"name": "mern-crud",
"version": "0.1.0",
"description": "A simple records system using MongoDB, Express.js, React.js, and Node.js with real-time CRUD operations using Socket.io",
"main": "server.js",
"scripts": {
"start": "node --env-file='.env' server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cefjoeii/mern-crud.git"
},
"keywords": [],
"author": "Ceferino Jose II",
"license": "MIT",
"bugs": {
"url": "https://github.com/cefjoeii/mern-crud/issues"
},
"homepage": "https://github.com/cefjoeii/mern-crud#readme",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.21.1",
"express-rate-limit": "^6.9.0",
"mongoose": "^7.5.0",
"mongoose-unique-validator": "^4.0.0",
"mongoose-validator": "^2.1.0",
"socket.io": "^4.8.0",
"string-capitalize-name": "^1.0.3"
}
}