-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 921 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
24
25
{
"name": "starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch-sass": "node-sass sass/main.scss css/style.css -w",
"devserver": "live-server",
"start": "npm-run-all --parallel devserver watch-sass",
"compile-sass": "node-sass sass/main.scss css/style.compiled.css",
"concat-css": "concat -o css/style.concat.css css/fontawesome-all.css css/normalize.css css/style.compiled.css",
"prefix-css": "postcss css/style.concat.css -u autoprefixer -o css/style.prefix.css",
"compress-css": "node-sass css/style.prefix.css css/style.min.css --output-style compressed",
"build-css": "npm-run-all compile-sass concat-css prefix-css compress-css"
},
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^8.0.0",
"concat": "^1.0.3",
"node-sass": "^4.7.2",
"npm-run-all": "^4.1.2",
"postcss-cli": "^5.0.0"
}
}