-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.01 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
29
30
31
32
33
34
{
"name": "css-course",
"version": "0.0.1",
"description": "",
"main": "",
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^6.0.2",
"http-server": "^0.8.0",
"livereload": "^0.3.7",
"node-sass": "^3.3.2",
"npm-run-all": "^1.2.11",
"postcss-cli": "^2.1.0",
"uncss": "^0.12.1"
},
"devDependencies": {
"nodemon": "^1.5.0",
"parker": "^0.0.9"
},
"scripts": {
"postinstall": "bower install && npm run build",
"check:parker": "parker css/main.css --format=json",
"check:uncss": "uncss ./index.html > css/main_uncss.css",
"build:sass": "node-sass --output-style indent main.scss css/main.css",
"build:autoprefix": "postcss --use autoprefixer -o css/main.css css/main.css",
"build": "npm-run-all build:*",
"postbuild": "npm run check:parker",
"dev:server": "http-server . -p 10000",
"dev:watch": "nodemon -e scss -x \"npm run build\"",
"dev:livereload": "livereload . -i 200",
"dev": "npm-run-all --parallel dev:*"
}
}