Skip to content

Commit 4342a4f

Browse files
author
canadaslar
committed
Adds package.json and gitignore files
1 parent 662c53b commit 4342a4f

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

package.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "chat-app",
3+
"version": "1.0.0",
4+
"description": "A simple chat application to learn real-time application basics with Node.js",
5+
"main": "index.js",
6+
"dependencies": {},
7+
"devDependencies": {},
8+
"scripts": {
9+
"test": "echo \"Error: no test specified\" && exit 1"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/canyener/chat-app.git"
14+
},
15+
"author": "",
16+
"license": "ISC",
17+
"bugs": {
18+
"url": "https://github.com/canyener/chat-app/issues"
19+
},
20+
"homepage": "https://github.com/canyener/chat-app#readme"
21+
}

0 commit comments

Comments
 (0)