-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.41 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
{
"name": "todayilearned",
"version": "0.0.1",
"author": "kid icarus <root@lolcalhost>",
"repository": "https://github.com/jm3/todayilearned",
"license": "MIT",
"devDependencies": {},
"dependencies": {
"@percy/agent": "^0.9.0",
"gulp": "^4.0.2",
"gulp-load-plugins": "^2.0.0",
"gulp-rename": "^1.4.0",
"gulp-responsive": "git+https://github.com/jm3/gulp-responsive.git",
"gulp-rm": "^2.0.0",
"lighthouse": "^5.2.0",
"postcss-cli": "^6.1.3",
"postcss-color-gray": "^5.0.0",
"postcss-css-variables": "^0.13.0",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.1.2",
"sharp": "^0.23.0",
"stylelint": "^10.1.0",
"stylelint-color-format": "^0.2.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-no-unsupported-browser-features": "^3.0.2",
"stylelint-order": "^3.0.1"
},
"scripts": {
"setup": "ln -s themes/rocker-panel/assets/css css; ln -s content/learnings learnings; ln -s themes/rocker-panel/layouts layouts-theme",
"build": "hugo --config config/hugo.toml",
"postcss": "npx postcss --config config/postcss.config.js css/all.css",
"resize-images": "npx gulp --gulpfile config/gulpfile.js resize_images",
"start": "hugo -D --config config/hugo.toml --environment dev serve",
"stylelint": "npx stylelint css/*css",
"test": "npx percy snapshot public --ignore-files 'categories/**/*,learnings/**/*,tags/**/*'"
}
}