-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 740 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 740 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
{
"name": "cs290-final-project",
"version": "1.0.0",
"description": "Handlebars templating",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "handlebars ./views/partials/exercise.handlebars -f ./public/exerciseTemplate.js",
"prestart": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chotch/CS290-FinalProject.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/chotch/CS290-FinalProject/issues"
},
"homepage": "https://github.com/chotch/CS290-FinalProject",
"dependencies": {
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"handlebars": "^4.0.12"
}
}