-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1022 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1022 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
{
"name": "socket-says-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint **/*.js",
"test": "jest --verbose --coverage",
"test-watch": "jest --watchAll --verbose --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/socket-says/socket-says-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/socket-says/socket-says-server/issues"
},
"homepage": "https://github.com/socket-says/socket-says-server#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"chalk": "^4.1.2",
"dotenv": "^16.0.1",
"events": "^3.3.0",
"express": "^4.18.1",
"inquirer": "^8.2.4",
"jest": "^28.1.2",
"mockrequest": "^1.1.2",
"mongoose": "^6.4.4",
"prompt": "^1.3.0",
"readline": "^1.3.0",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"supertest": "^6.2.4",
"websocket": "^1.0.34"
}
}