-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 891 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
31
32
33
34
35
36
37
38
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "santa-app",
"version": "0.0.1",
"description": "A simple Node app built on Express, instantly up and running.",
"main": "server.js",
"scripts": {
"start": "nodemon server.js "
},
"dependencies": {
"body-parser": "^1.20.1",
"dotenv": "^8.6.0",
"ejs": "^3.1.8",
"express": "^4.18.2",
"morgan": "^1.10.0",
"node-cron": "^3.0.2",
"node-fetch": "^3.3.0",
"nodemailer": "^6.8.0",
"request": "^2.88.2"
},
"engines": {
"node": "16.x"
},
"repository": {
"url": "https://github.com/alj-devops/santa-app"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
],
"devDependencies": {
"nodemon": "^2.0.20"
}
}