forked from harbor-xyz/coding-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 813 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
{
"name": "calendly-api",
"version": "0.0.0",
"description": "REST APIs for a Calendly-like application",
"main": "src/app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"pm2:start": "pm2 start app.js --name calendly-api",
"pm2:stop": "pm2 stop calendly-api",
"pm2:restart": "pm2 restart calendly-api",
"pm2:delete": "pm2 delete calendly-api",
"pm2:logs": "pm2 logs calendly-api",
"pm2:list": "pm2 list"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"moment-timezone": "^0.5.34",
"mongoose": "^6.0.12",
"morgan": "~1.9.1",
"nodemon": "^3.1.7",
"pug": "2.0.0-beta11",
"winston": "^3.3.3"
},
"license" : "ISC"
}