-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.05 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
{
"name": "speedchatapp",
"version": "1.0.0",
"description": "A simple and quick tutorial to implement a chat using the MERN stack.",
"main": "index.js",
"author": "Armel Pingault<[email protected]>",
"contributors": [],
"scripts": {
"dev": "concurrently --kill-others \"heroku local\" \"npm run start --prefix ./client\"",
"postinstall": "npm install --prefix ./server && npm install --prefix ./client && npm run build --prefix ./client",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/armelpingault/speedchatapp.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/armelpingault/speedchatapp/issues"
},
"homepage": "https://github.com/armelpingault/speedchatapp#readme",
"devDependencies": {
"concurrently": "^5.0.2"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"express": "^4.17.1",
"git": "^0.1.5",
"material-ui-icons": "^1.0.0-beta.36",
"mongoose": "^5.10.0",
"socket.io": "^2.3.0"
}
}