-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1 KB
/
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": "final-project",
"version": "1.0.0",
"description": "A website to store d&d campaign ideas",
"main": "index.js",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"handlebars": "^4.5.3"
},
"devDependencies": {
"nodemon": "^2.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js",
"build": "handlebars -f public/hbsTemplate.js views/partials/post.handlebars views/partials/tag.handlebars views/partials/comment.handlebars",
"prestart": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osu-cs290-f19/final-project-campaign-team.git"
},
"author": "Kevin Neiger, Joe Johns, Nancy Nguyen",
"license": "ISC",
"bugs": {
"url": "https://github.com/osu-cs290-f19/final-project-campaign-team/issues"
},
"homepage": "https://github.com/osu-cs290-f19/final-project-campaign-team#readme"
}