forked from drwpow/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1012 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
{
"name": "blog",
"private": true,
"version": "0.0.1",
"license": "MIT",
"scripts": {
"build:static": "rm -rf public && npm run build:css && cobalt build",
"build:css": "sass --no-source-map assets/stylesheets/app.scss:assets/app.css && npm run minify:css",
"build:css:watch": "sass --watch --no-source-map assets/stylesheets/app.scss:assets/app.css",
"minify:css": "postcss assets/app.css -o assets/app.min.css",
"minify:css:watch": "postcss -w assets/app.css -o assets/app.min.css",
"start": "concurrently 'cobalt serve --drafts' 'npm run build:css:watch' 'npm run minify:css:watch'"
},
"dependencies": {
"cssnano": "^4.1.10",
"postcss-cli": "^7.1.1",
"postcss-preset-env": "^6.7.0",
"sass": "^1.26.10",
"stylelint-config-rational-order": "^0.1.2"
},
"devDependencies": {
"concurrently": "^5.3.0",
"prettier": "^2.1.1",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0"
}
}