-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 869 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 869 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
30
31
{
"name": "warsawjs-workshop-31-calendar-server",
"version": "0.2.0",
"description": "Express server serving client app and api",
"main": "index.js",
"author": "G3F4",
"license": "MIT",
"private": false,
"dependencies": {
"agenda": "2.0.2",
"body-parser": "1.18.3",
"cors": "2.8.5",
"dotenv": "7.0.0",
"express": "4.16.4",
"express-session": "1.15.6",
"moment-timezone": "0.5.23",
"mongoose": "5.4.22",
"morgan": "1.9.1",
"passport": "0.4.0",
"passport-github": "1.1.0",
"web-push": "3.3.3"
},
"scripts": {
"client:build": "rm -rf public && tar -zxvf client-package.tar.gz && mv build public",
"dev": "yarn run client:build && nodemon -r dotenv/config index.js",
"start": "yarn run client:build && node -r dotenv/config index.js"
},
"devDependencies": {
"nodemon": "1.18.10"
}
}