-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 1.11 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
{
"name": "recipe-finder-cs290-spring18",
"version": "1.0.0",
"description": "A website which allows users to enter ingredients and find corresponding recipes",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js",
"build": "handlebars views/partials/ -f public/partials.js",
"prestart": "npm run build",
"predev": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OSU-CS290-Sp18/final-project-final-project-group-6.git"
},
"keywords": [
"recipe"
],
"author": "Alex Grejuc, Monica Holliday, Michaela Buchanan, (Donald) Max Harkins",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/OSU-CS290-Sp18/final-project-final-project-group-6/issues"
},
"homepage": "https://github.com/OSU-CS290-Sp18/final-project-final-project-group-6#readme",
"dependencies": {
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"mongodb": "^3.0.10",
"transform": "^1.1.2"
},
"devDependencies": {
"nodemon": "^1.17.5"
}
}