-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "chat",
"version": "1.0.0",
"description": "An realtime chat app build with nodejs, redis and socketio",
"main": "./src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --inspect --exec babel-node ./src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muhammedmirzakilic/chat.git"
},
"author": "Muhammed Mirza Kilic",
"license": "ISC",
"bugs": {
"url": "https://github.com/muhammedmirzakilic/chat/issues"
},
"homepage": "https://github.com/muhammedmirzakilic/chat#readme",
"dependencies": {
"body-parser": "*",
"connect-redis": "^4.0.4",
"cookie-parser": "^1.4.4",
"dotenv": "^8.0.0",
"ejs": "^2.5.6",
"express": "*",
"express-session": "^1.17.0",
"fs": "^0.0.1-security",
"ioredis": "^4.14.1",
"socket.io": "^2.3.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-polyfill": "^6.26.0",
"nodemon": "^2.0.2"
}
}