forked from bloominstituteoftechnology/node-api4-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 872 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
{
"name": "api4-project",
"version": "1.0.0",
"description": "In this challenge, you will build a simple Express app that is _deployable_ to Heroku. This means that it has a proper `start` script in the `package.json` file, and that the port number is taken from the environment instead of it being hard-coded. Feel free to deploy your app to Heroku, but bear in mind that this is not a free service anymore.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"nodemon": "^3.0.3"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"helmet": "^7.1.0"
}
}