forked from ErikPlachta/Calendari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.12 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
{
"name": "Calendari",
"version": "1.0.0",
"description": "Calendari is a scheduling app for your business. It gives business owners the ability to streamline the appointment booking process by letting the users schedule their own appointments based on the business's availability. This app can be used by any business in any industy, and future development includes plans to customize the look of the website!",
"main": "server/server.js",
"scripts": {
"seed": "cd server && npm run seed",
"build": "cd client && npm run build",
"install": "cd server && npm i && cd ../client && npm i --force",
"heroku-postbuild": "npm run install-client && npm run build",
"server": "nodemon server.js",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm start\"",
"start": "node server/server.js"
},
"keywords": [
"mern",
"mongodb",
"express",
"react",
"node"
],
"author": "Erik Plachta, Christiana Sullivan Morales, and Mary Lawton",
"license": "MIT",
"devDependencies": {
"concurrently": "^5.1.0"
},
"dependencies": {
"react-router": "^6.3.0"
}
}