-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 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
26
{
"name": "natours",
"version": "1.0.0",
"description": "Nature tours project",
"main": "index.html",
"scripts": {
"watch": "node-sass sass/main.scss css/style.css -w",
"serve": "live-server",
"start": "npm-run-all --parallel serve watch",
"compile": "node-sass sass/main.scss css/style.comp.css",
"concat": "concat -o css/style.concat.css css/icon-font.css css/style.comp.css",
"prefix": "postcss --use autoprefixer -b 'last 10 versions' css/style.concat.css -o css/style.prefix.css",
"compress": "node-sass css/style.prefix.css css/style.css --output-style compressed",
"build": "npm-run-all compile concat prefix compress"
},
"author": "Manuel Figueira",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.2.6",
"concat": "^1.0.3",
"live-server": "^1.2.1",
"node-sass": "^6.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.1"
}
}