-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1 KB
/
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
{
"name": "real-time-web-with-socket",
"version": "1.0.0",
"description": "From 9Linkedin Course)[https://www.linkedin.com/learning/node-js-real-time-web-with-socket-io]",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production npm start ./index.js",
"dev": "NODE_ENV=development nodemon ./index.js --exec babel-node -e js",
"test": "DEBUG=* NODE_ENV=test nodemon ./index.js --exec babel-node -e js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/programmingmonkeys/real-time-web-with-socket.git"
},
"keywords": [],
"author": "codingChewie",
"dependencies": {
"express": "^4.16.2",
"socket.io": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"nodemon": "^1.19.2"
},
"bugs": {
"url": "https://github.com/programmingmonkeys/real-time-web-with-socket/issues"
},
"homepage": "https://github.com/programmingmonkeys/real-time-web-with-socket#readme"
}