-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·32 lines (32 loc) · 921 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
{
"name": "earth-mars-and-beyond",
"version": "1.0.0",
"description": "Second project for the Udacity Intermediate JavaScript Nanodegree. This project is associated with the Functional Programming in JavaScript course",
"main": "index.js",
"homepage": "https://earth-mars-and-beyond.com",
"author": {
"name": "Javier Feliu",
"email": "javier@wanderin.dev",
"url": "https://wanderin.dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wanderindev/earth-mars-and-beyond.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/server/index.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"immutable": "^4.0.0-rc.12",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"bulma-calendar": "^6.0.9",
"nodemon": "^2.0.7"
}
}