-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
38 lines (37 loc) · 1.39 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
35
36
37
38
{
"name": "web-design-workshop",
"version": "2.0.0",
"description": "This workshop will introduce the professional practice, language, and methodology of design for the web. The goal of the workshop to provide a solid basis for a journalist working with a web design team.",
"author": "Nikolas Wise <[email protected]> (http://nikolas.ws/)",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.3",
"imagemin-newer": "^1.0.1",
"live-server": "^0.9.2",
"node-sass": "^3.4.2",
"npm-run-series": "^1.0.0",
"parallelshell": "^2.0.0",
"postcss-cli": "^2.5.1",
"rerun-script": "^0.6.0",
"static-site": "^1.1.4",
"surge": "^0.17.7",
"uglify-js": "^2.6.2"
},
"watches": {
"img": "source/**/*.{jpg,jpeg,png,svg,gif}",
"js": "source/*.js",
"html": "source/**/*.html"
},
"scripts": {
"sass": "node-sass source/ --output-style compressed --source-map build/ -o build/",
"postsass": "postcss -u autoprefixer -r build/*.css",
"img": "imagemin-newer source/ build/",
"html": "static-site -b build",
"js": "uglifyjs source/slides.js -o build/slides.js",
"postjs": "cp source/bmo.js build",
"prestart": "npm-run-series img sass html js",
"start": "parallelshell 'live-server build/' 'rerun-script' 'npm run sass -- -w'",
"predeploy": "npm run prestart",
"deploy": "surge build/ --domain workshop.nikolas.ws"
}
}