-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 871 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 871 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
{
"name": "apod-email-subscription",
"version": "1.0.0",
"description": "This application let's users send NASA's Astronomy Image of the Day to their email everyday.",
"main": "index.js",
"scripts": {
"client-install": "npm install --prefix frontend",
"start": "nodemon server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run start\" \"npm run client\"",
"heroku-postbuild": "cd frontend && npm install && npm run build"
},
"author": "Harshit Jain",
"license": "MIT",
"engines": {
"node": "10.x"
},
"dependencies": {
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"crypto": "^1.0.1",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"mongoose": "^5.4.19",
"node-fetch": "^2.3.0",
"node-schedule": "^1.3.2",
"nodemailer": "^5.1.1",
"nodemon": "^1.18.10"
}
}