-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1000 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1000 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
39
40
41
42
43
{
"name": "messenger",
"version": "1.0.0",
"description": "created by ULUMANANA",
"main": "server.js",
"scripts": {
"start": "node server",
"dev": "nodemon server",
"lint:check": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julikss/messenger.git"
},
"keywords": [
"messenger"
],
"author": "ULUMANANA",
"license": "ISC",
"bugs": {
"url": "https://github.com/julikss/messenger/issues"
},
"homepage": "https://github.com/julikss/messenger#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^6.1.5",
"node-gyp": "^8.4.1",
"node-waf": "^1.0.0",
"nodemon": "^2.0.15",
"qs": "^6.10.2",
"socket.io": "^4.4.0"
},
"devDependencies": {
"jest": "^27.4.7"
}
}