-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.76 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "keto-api",
"version": "0.1.0",
"description": "This project is intended to be an API that serves up keto recipes, and then converts them to a shopping list. The v0 idea is to first serve up recipes. The v1 idea is to convert the recipes into a grocery list. This API will be built using Node.js + Express.js. We will research API's that return recipes, and our API will filter those out to show Keto recipes with a filter for Vegan and Gluten Free.",
"main": "server.js",
"scripts": {
"test": "mocha --exit",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Keto-Eating/Keto-Recipe-API.git"
},
"author": "Keto-Eating",
"license": "MIT",
"bugs": {
"url": "https://github.com/Keto-Eating/Keto-Recipe-API/issues"
},
"homepage": "https://github.com/Keto-Eating/Keto-Recipe-API#readme",
"dependencies": {
"async": "^2.6.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"docsify-cli": "^4.4.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.16.1",
"handlebars-helpers": "^0.10.0",
"http-errors": "^1.7.1",
"is-number": "^7.0.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.19",
"mocha": "^5.2.0",
"mongodb": "^3.1.6",
"mongoose": "^5.7.5",
"mongoose-paginate": "^5.0.3",
"mongoose-unique-validator": "^2.0.2",
"morgan": "^1.9.1",
"node-schedule": "^1.3.0",
"passport": "^0.4.0",
"recipe-ingredient-parser-v2": "^1.1.1"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0"
}
}