-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 767 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 767 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
{
"name": "chat_app",
"version": "1.0.0",
"description": "React + socket.io chat app",
"main": "server.js",
"scripts": {
"start:dev-full": "concurrently \"nodemon server.js\" \"npm run start:dev --prefix client\"",
"start": "node server.js",
"heroku-postbuild": "npm install --prefix client && npm run build --prefix client"
},
"author": "Ivan Jakimovski",
"license": "ISC",
"dependencies": {
"concurrently": "^3.5.1",
"express": "^4.16.3",
"moment": "^2.22.0",
"multer": "^1.3.0",
"socket.io": "^2.1.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2"
}
}