-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
28 lines (28 loc) · 1.02 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
{
"name": "frontend-starter-styles",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:springload/frontend-starter-styles.git",
"author": "Springload",
"license": "MIT",
"dependencies": {
"normalize.css": "^8.0.1"
},
"scripts": {
"lint": "stylelint 'src/sass/**/*.scss' --syntax scss",
"compile": "yarn lint && node-sass-chokidar --include-path=node_modules/normalize.css src/sass/ -o dist/css",
"build": "yarn compile && postcss dist/css/*.css --use autoprefixer -d dist/css",
"dist": "yarn compile && postcss dist/css/*.css --no-map --use autoprefixer cssnano -d dist/css",
"start": "node-sass-chokidar 'src/sass' --watch --include-path=node_modules/normalize.css -o dist/css -c 'yarn build'"
},
"devDependencies": {
"autoprefixer": "^9.6.1",
"chokidar-cli": "^2.0.0",
"cssnano": "^4.1.10",
"node-sass-chokidar": "^1.3.5",
"postcss-cli": "^6.1.3",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-scss": "^3.9.3"
}
}