-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 978 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 978 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
37
38
{
"name": "lifenode",
"version": "1.0.0",
"description": "LifeNode is a social media wep application that lets users post anything they want.",
"main": "app.js",
"scripts": {
"test": "mocha --timeout 5000",
"start": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Burakcoli/lifenode.git"
},
"author": "Burak Unutmaz",
"license": "ISC",
"bugs": {
"url": "https://github.com/Burakcoli/lifenode/issues"
},
"homepage": "https://github.com/Burakcoli/lifenode#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.1",
"multer": "^1.4.5-lts.1",
"socket.io": "^4.5.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"sinon": "^15.0.1"
}
}