-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 817 Bytes
/
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
{
"name": "jekyll-instagram-portfolio-theme",
"version": "1.0.0",
"private": true,
"description": "Theme front-end assets",
"scripts": {
"css:clean": "rm -rf ./web-dist/css && mkdir ./web-dist/css",
"css:sass": "node-sass --include-path ./_web-src/scss --source-map ./web-dist/css --output-style compressed ./_web-src/scss/main.scss ./web-dist/css/main.min.css",
"css:build": "npm run css:clean && npm run css:sass",
"css:watch": "nodemon --ext scss --watch ./_web-src/scss --exec 'npm run css:build'",
"watch": "npm run css:watch",
"build": "npm run css:build"
},
"author": "Sergey Sokurenko",
"license": "(c) Copyright 2016 Sergey Sokurenko",
"devDependencies": {
"node-sass": "^3.7.0",
"nodemon": "^1.9.2",
"uglify-js": "^2.6.2"
},
"dependencies": {
}
}