-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 974 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 974 Bytes
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
{
"name": "express-dynamic-content",
"version": "1.0.0",
"description": "Basic dynamic content serving with Express",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "handlebars views/partials/item.handlebars -f public/itemTemplate.js && handlebars views/partials/itemPhoto.handlebars -p -f public/itemPhotoTemplate.js",
"prestart": "npm run build",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/OSU-CS290-Sp2017/express-dynamic-content.git"
},
"author": "Rob Hess <hessro@oregonstate.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OSU-CS290-Sp2017/express-dynamic-content/issues"
},
"homepage": "https://github.com/OSU-CS290-Sp2017/express-dynamic-content#readme",
"dependencies": {
"express": "^4.15.3",
"express-handlebars": "^3.0.0",
"body-parser": "^1.17.2"
},
"devDependencies": {}
}