-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1008 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
28
29
30
31
32
33
34
{
"name": "scss-postcss-boiler",
"version": "1.0.0",
"description": "scss-postcss-boiler",
"main": "webpack.config.js",
"author": "Lasse Nørgaard",
"license": "UNLICENSED",
"homepage": "https://github.com/lassenorgaard/scss-postcss-boiler",
"repository": {
"type": "git",
"url": "[email protected]:lassenorgaard/scss-postcss-boiler.git"
},
"scripts": {
"build:css": "node-sass scss/ -o css/",
"build:postcss": "postcss css/**/*.css -c postcss.config.js -r",
"build": "npm run build:css && npm run build:postcss",
"watch": "onchange './scss/**/*.scss' -- npm run build"
},
"keywords": [],
"devDependencies": {
"css-loader": "^0.28.4",
"cssnano": "^3.10.0",
"node-sass": "^4.5.3",
"onchange": "^2.5.0",
"postcss": "^6.0.10",
"postcss-cli": "^4.1.0",
"postcss-cssnext": "^3.0.2",
"postcss-inline-svg": "^3.0.0",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2"
},
"dependencies": {}
}