-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·29 lines (29 loc) · 981 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
{
"name": "master-final-project",
"version": "1.0.0",
"description": "Web app for taking care of a plant online",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js",
"build": "handlebars views/partials/plant.handlebars -f public/plantTemplate.js",
"prestart": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OSU-CS290-F18/final-project-take-care-of-an-online-plant.git"
},
"author": "Joseph Noonan, Grace Bullock, Ethan Duong",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/OSU-CS290-F18/final-project-take-care-of-an-online-plant/issues"
},
"homepage": "https://github.com/OSU-CS290-F18/final-project-take-care-of-an-online-plant#readme",
"dependencies": {
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"handlebars": "^4.0.12",
"mongodb": "^3.1.10"
}
}