-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 855 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": "education",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch-sass": "node-sass sass/main.scss css/style.css --watch",
"devserver": "live-server",
"start": "npm-run-all --parallel devserver watch-sass",
"compile-sass": "node-sass sass/main.scss css/style.css",
"prefix-css": "postcss --use autoprefixer -b '> 5%' css/style.css -o css/style.prefix.css",
"compress-css": "node-sass css/style.prefix.css css/style.css --output-style compressed",
"build": "npm-run-all compile-sass prefix-css compress-css"
},
"author": "Norayr",
"license": "ISC",
"devDependencies": {
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.3"
},
"dependencies": {
"autoprefixer": "^8.5.1",
"live-server": "^1.2.0",
"normalize.css": "^8.0.0",
"postcss-cli": "^5.0.0"
}
}