-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 860 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
{
"name": "brewedup",
"version": "1.0.0",
"description": "landing page for getaway tours",
"scripts": {
"watch:sass": "node-sass sass/main.scss compiled-css/style.comp.css -w",
"compile:sass": "node-sass sass/main.scss compiled-css/style.comp.css",
"concat:css": "concat -o css/main.concat.css compiled-css/style.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' compiled-css/main.concat.css -o compiled-css/main.prefix.css",
"compress:css": "node-sass compiled-css/main.concat.css --output-style compressed",
"build:css": "npm-run-all compile:sass concat:css prefix:css compress:css"
},
"author": "Ayesha Munawar",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.2",
"concat": "^1.0.3",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^9.1.0"
}
}