forked from OSU-CS290-Sp18/handlebars-templating
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 826 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
{
"name": "handlebars-templating",
"version": "1.0.0",
"description": "Dynamic content using Handlebars templates",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"build": "handlebars views/partials/photoCard.handlebars -f public/photoCardTemplate.js",
"prestart": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OSU-CS290-F17/handlebars-templating.git"
},
"author": "Hess",
"license": "MIT",
"bugs": {
"url": "https://github.com/OSU-CS290-F17/handlebars-templating/issues"
},
"homepage": "https://github.com/OSU-CS290-F17/handlebars-templating#readme",
"dependencies": {
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"handlebars": "^4.0.11"
}
}