-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·28 lines (28 loc) · 806 Bytes
/
package.json
File metadata and controls
executable file
·28 lines (28 loc) · 806 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
28
{
"name": "mateenshowcase",
"version": "1.0.0",
"description": "showcase application to display my work",
"main": "server.js",
"scripts": {
"client-install": "cd client && npm install",
"start": "node server.js",
"server": "nodemon 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"
},
"author": "Mateen kazia",
"license": "MIT",
"devDependencies": {
"nodemon": "^1.14.6"
},
"dependencies": {
"body-parser": "^1.18.3",
"client": "file:client",
"concurrently": "^3.5.1",
"cors": "^2.8.5",
"express": "^4.16.2",
"mongoose": "^5.4.4",
"path": "^0.12.7"
}
}