forked from greenkeeperio/website
-
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) · 727 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 727 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": "greenkeeper-website",
"description": "The Greenkeeper Website",
"devDependencies": {
"browser-sync": "^2.23.5",
"browserify": "^16.1.0",
"gh-pages": "^1.0.0",
"harp": "^0.29.0",
"uglifyify": "^5.0.1"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/greenkeeperio/website.git"
},
"scripts": {
"build": "harp compile ./app ./www",
"deploy": "node deploy.js",
"start": "harp server ./www",
"test": "npm run build",
"server": "harp server ./app & browser-sync start --proxy 'localhost:9000' --files 'app/**/*.ejs, app/*.ejs, app/**/*.md, app/**/*.scss, app/**/_data.json'"
},
"dependencies": {
"jquery": "^3.1.1"
}
}