-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "react-socket",
"version": "1.0.0",
"description": "This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "node server.js",
"seed": "node scripts/seed.js",
"build": "node scripts/build.js",
"client": "node scripts/start-client.js",
"start": "concurrently \"nodemon server.js\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkdinh/ReactSocket.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mkdinh/ReactSocket/issues"
},
"homepage": "https://github.com/mkdinh/ReactSocket#readme",
"dependencies": {
"body-parser": "^1.18.2",
"concurrently": "^3.5.1",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"express-session": "^1.15.6",
"mongoose": "^4.13.7",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"socket.io": "^2.0.4"
}
}