-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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
40
41
42
43
44
45
46
47
48
49
50
{
"private": true,
"dependencies": {
"@material/button": "^10.0.0",
"@material/elevation": "^10.0.0",
"@material/typography": "^10.0.0",
"css-aspect-ratio": "^1.0.5"
},
"scripts": {
"clean": "gulp clean",
"build:css": "gulp buildDev",
"build:posts": "gulp buildDev",
"deploy": "gulp deploy",
"serve": "browser-sync start --server '.dist' --files '.dist'",
"watch:css": "onchange 'src/sass' -- npm run build:css",
"watch:posts": "onchange 'src/posts' -- npm run build:posts",
"watch:includes": "onchange 'src/includes' -- npm run build:posts",
"watch": "run-p serve watch:css watch:posts watch:includes"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"browser-sync": "^2.27.10",
"convert-svg-to-png": "^0.6.4",
"eslint": "^8.27.0",
"feed": "^4.2.2",
"front-matter": "^4.0.2",
"gm": "^1.25.0",
"gulp": "^4.0.2",
"gulp-append-prepend": "^1.0.9",
"gulp-clean-css": "^4.3.0",
"gulp-data": "^1.3.1",
"gulp-gh-pages": "^0.5.4",
"gulp-imagemin": "^8.0.0",
"gulp-markdown": "^7.0.0",
"gulp-nunjucks": "^5.1.0",
"gulp-sass": "^5.1.0",
"highlights": "^3.1.6",
"imagemin": "^8.0.1",
"imagemin-optipng": "^8.0.0",
"moment": "^2.29.4",
"node-exec-promise": "^1.0.2",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"sass": "^1.56.0",
"through2": "^4.0.2",
"workbox-build": "^6.5.4"
}
}