-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
35
36
37
38
39
{
"name": "scss-proto",
"version": "3.0.0",
"description": "A SCSS boilerplate for any kind of web-based project.",
"author": "Tom-Rune Bornholdt",
"license": "MIT",
"scripts": {
"start": "npm run serve",
"serve": "webpack --watch --mode=development",
"build": "webpack --mode=development",
"build:prod": "webpack --mode=production",
"lint": "stylelint \"src/**/*.scss\"",
"lint:fix": "stylelint \"src/**/*.scss\" --fix"
},
"dependencies": {
"mathsass": "^0.11.0",
"modularscale-sass": "^3.0.10",
"normalize.css": "^8.0.1",
"postcss-url": "^8.0.0",
"sass-mq": "^5.0.1"
},
"devDependencies": {
"autoprefixer": "^9.8.6",
"css-loader": "^4.2.1",
"cssnano": "^4.1.10",
"file-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"sass": "^1.26.10",
"sass-loader": "^9.0.3",
"style-loader": "^1.2.1",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-scss": "^3.18.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}