-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 781 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 781 Bytes
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
{
"name": "handlingunusedcsswithsassboilerplate",
"version": "1.0.0",
"description": "A boilerplate to follow along 'Handling unused CSS in SASS to improve performance' article",
"scripts": {
"clean": "rimraf dist/static/*.css",
"watch": "onchange \"src/assets/scss/*.scss\" \"src/assets/scss/*/**.scss\" -- npm run build",
"build": "npm run clean && node build/css.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebDevLuke/HandlingUnusedCSSWithSASSBoilerplate.git"
},
"author": "Luke Harrison",
"license": "MIT",
"devDependencies": {
"dom-slider": "^1.5.3",
"glob": "7.1.3",
"node-sass": "4.11.0",
"normalize.css": "8.0.1",
"onchange": "5.2.0",
"rimraf": "2.6.3",
"sass-mq": "^5.0.0"
}
}