forked from Migracode-Barcelona/node-challenge-chat-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 811 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 811 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
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "hello-express",
"version": "0.0.1",
"description": "A simple Node app built on Express, instantly up and running.",
"main": "server.js",
"scripts": {
"start": "nodemon server.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"nodemon": "^2.0.7"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ArthurNNN/node-challenge-chat-server.git"
},
"author": "",
"bugs": {
"url": "https://github.com/ArthurNNN/node-challenge-chat-server/issues"
},
"homepage": "https://github.com/ArthurNNN/node-challenge-chat-server#readme"
}