-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 824 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 824 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
29
{
"name": "mapcontacts",
"version": "1.0.0",
"homepage": "https://mapcontacts.herokuapp.com/",
"main": "server/server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server/server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"dev": "cross-env NODE_ENV=development concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon server/server.js --watch server/*",
"client": "npm start --prefix client"
},
"dependencies": {
"express": "^4.17.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"mongodb": "^3.6.4"
},
"devDependencies": {
"concurrently": "^6.0.0",
"nodemon": "^2.0.7"
},
"engines": {
"node": "14.16.0"
}
}