-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.19 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
33
34
{
"name": "Panhandle",
"version": "1.0.0",
"description": "Panhandle App",
"main": "server.js",
"dependencies": {
"handlebars": "^4.0.11",
"js-beautify": "^1.10.2",
"live-server": "^1.2.0",
"node-sass": "^4.8.3",
"nodemon": "^1.19.1",
"showdown": "^1.9.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"build-css": "node-sass --include-path scss src/static/styles/main.scss styles/main.css",
"watch-css": "nodemon -e scss -x \"npm run build-css\"",
"build-views": "node build/build.js -d cwd -p \"src/views/partials/**/*.hbs\" -l \"src/views/layouts/**/*.hbs\" -t \"src/views/templates/**/*.hbs\" -v",
"watch-views": "nodemon -e hbs -x \"npm run build-views\"",
"build-md": "node build/markdown-to-handlebars src/markdown/blog/ src/views/templates/blog/",
"clear-html": "rm *.html && rm **/*.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neilthawani/panhandle.git"
},
"author": "Neil Thawani",
"license": "ISC",
"bugs": {
"url": "https://github.com/neilthawani/panhandle/issues"
},
"homepage": "https://github.com/neilthawani/panhandle#readme"
}