-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.25 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
{
"name": "css-talk",
"version": "1.0.0",
"description": "Desinging Simple Sample Interactive Map Apps",
"author": "Nikolas Wise <[email protected]> (http://nikolas.ws/)",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.3",
"calcite-web": "github:esri/calcite-web#v1.0.0-beta.6",
"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",
"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 designing-maps.nikolas.ws"
}
}