forked from cmcnamara15/Schedaddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.06 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
{
"name": "group-project-3",
"version": "1.0.0",
"description": "Schedaddy is a Customer relationship management (CRM) platform with the intent to streamline your scheduling for your company. Schedaddy offers the ability to manage employees, roles, and schedules with the greatest of ease.",
"homepage": "https://schedaddy-0dffdc6ab2cd.herokuapp.com/",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm start\"",
"install": "cd server && npm i && cd ../client && npm i",
"build": "cd client && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"concurrently": "^5.1.0"
},
"dependencies": {
"apollo-server-express": "^3.11.1",
"bcrypt": "^5.1.0",
"express": "^4.17.2",
"graphql": "^15.8.0",
"jsonwebtoken": "^9.0.1",
"moment": "^2.29.4",
"typewriter-effect": "^2.20.1"
},
"engines": {
"node": "16.19.1",
"npm": "8.19.3"
}
}