-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 869 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": "straight-outta-oven",
"version": "1.0.0",
"description": "pizza site",
"main": "index.js",
"author": "toxx",
"license": "MIT",
"scripts": {
"watch-sass": "sass --watch sass/main.scss css/style.css -w",
"devServer": "live-server",
"start": "npm-run-all --parallel devServer watch-sass",
"compile-sass": "sass sass/main.scss css/style.comp.css",
"prefix-css": "postcss --use autoprefixer -b 'last 10 versions' css/style.comp.css -o css/style.prefix.css",
"compress-css": "sass css/style.prefix.css css/style.css --style compressed",
"build-css": "npm-run-all compile-sass prefix-css compress-css"
},
"dependencies": {
"autoprefixer": "^10.4.4",
"concat": "^1.0.3",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"sass": "^1.48.0"
}
}