-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
34 lines (34 loc) · 878 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
33
34
{
"name": "artichoke_chat",
"version": "1.0.0",
"description": "A Simple Chat Client",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/irevenko/ArtichokeChat.git"
},
"keywords": [
"chat",
"socket.io",
"express"
],
"author": "Ilya Revenko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/irevenko/ArtichokeChat/issues"
},
"homepage": "https://github.com/irevenko/ArtichokeChat#readme",
"dependencies": {
"express": "^4.17.1",
"socket.io": "^2.3.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.2"
}
}