-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.07 KB
/
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
28
{
"name": "habit-controller",
"version": "1.0.0",
"description": "Small app to track your bad and good habits",
"main": "index.js",
"scripts": {
"watch:sass": "node-sass -w src/styles/style.scss src/styles/style.css",
"devserver": "live-server",
"start": "npm-run-all --parallel devserver watch:sass",
"compile:sass": "node-sass src/style/styles.scss src/styles/style.comp.css",
"concat:css": "concat -o src/styles/style.concat.css src/styles/style.comp.css",
"prefix:css": "postcss src/styles/style.concat.css --use autoprefixer -o src/styles/style.prefix.css",
"compress:css": "node-sass src/styles/style.prefix.css src/styles/style.css --output-style compressed",
"build:css": "npm-run-all compile:sass concat:css prefix:css compress:css"
},
"author": "Marcelina",
"license": "ISC",
"browserslist": "last 4 versions",
"devDependencies": {
"autoprefixer": "^7.2.6",
"concat": "^1.0.3",
"live-server": "^1.2.1",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.1",
"postcss": "^8.2.8",
"postcss-cli": "^8.3.1"
}
}