-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.2 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
44
45
46
{
"name": "ez-chat",
"version": "1.0.0",
"description": "",
"main": "./server/server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server/server.js",
"server": "nodemon server/server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"engines": {
"node": "10.14.2",
"npm": "6.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichalKubice/ez-chat.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MichalKubice/ez-chat/issues"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cloudinary": "^1.13.2",
"concurrently": "^4.1.0",
"create-react-app": "^2.1.3",
"express": "^4.16.4",
"jsonwebtoken": "^7.1.9",
"lodash": "^4.17.11",
"mongodb": "^2.2.5",
"mongoose": "^4.5.9",
"multer": "^1.4.1",
"multer-storage-cloudinary": "^2.2.1",
"socket.io": "^2.2.0",
"validator": "^9.4.1"
},
"devDependencies": {
"nodemon": "^1.18.9"
}
}