forked from cascadiajs/2016.cascadiajs.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "2016.cascadiajs.com",
"version": "1.0.0",
"description": "The website for the CascadiaJS 2016 conference",
"homepage": "2016.cascadiajs.com",
"author": "Dave Poole",
"private": true,
"repository": "[email protected]:cascadiajs/2016.cascadiajs.com.git",
"engines": {
"node": "~4.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified…yet! Pull requests on cascadiajs/2016.cascadiajs are greatly appreciated.\"",
"images": "gulp",
"start": "harp server ./website --port 9000",
"compile": "harp compile ./website ./dist",
"predeploy": "npm run compile",
"deploy": "surge -p ./dist -d 2016.cascadiafest.org",
"prestage": "npm run compile",
"stage": "surge -p ./dist -d cjs2016-stage.surge.sh"
},
"devDependencies": {
"bootstrap": "git://github.com/twbs/bootstrap#v4-dev",
"harp": "^0.20.0",
"surge": "^0.17.3"
},
"dependencies": {
"font-awesome": "^4.5.0",
"gulp": "^3.9.1",
"gulp-cli": "^1.2.1",
"gulp-image-resize": "^0.7.1"
}
}