-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 990 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
26
27
{
"name": "trillo",
"version": "1.0.0",
"description": "Landing page for trillo",
"main": "index.js",
"scripts": {
"watch:sass": "node-sass sass/main.scss css/style.css -w",
"server": "live-server",
"start": "npm-run-all --parallel watch:sass server",
"compile:sass": "node-sass sass/main.scss css/style.compile.to-delete.css",
"prefix:css": "postcss css/style.compile.to-delete.css -o css/style.prefix.to-delete.css --use autoprefixer",
"compress:css": "node-sass css/style.prefix.to-delete.css css/style.min.css --output-style compressed",
"delete-intermediates": "del-cli css/*.to-delete.css",
"build:css": "npm-run-all compile:sass prefix:css compress:css delete-intermediates"
},
"author": "John",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^8.6.4",
"concat": "^1.0.3",
"del-cli": "^1.1.0",
"live-server": "^1.2.0",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.3",
"postcss-cli": "^5.0.1"
}
}