-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
32 lines (32 loc) · 957 Bytes
/
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
{
"name": "thought-wall",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.9.7",
"morgan": "^1.10.0",
"node-cron": "^2.0.3",
"nodemon": "^2.0.2",
"socket.io": "^2.3.0"
},
"scripts": {
"install-all": "concurrently \"npm install\" \"cd client && npm install\"",
"client": "cd client && npm run dev",
"server": "nodemon server/server.js",
"dev": "concurrently \"nodemon server/server.js\" \"cd client && npm run start\"",
"build": "cd client && npm build",
"start": "node server/server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "\u001b[D\u001b[D\u001b[DThought-Wall.git)"
},
"author": "Jack Zheng",
"license": "ISC"
}