-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
94 lines (94 loc) · 2.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "boris-schapira-dev-jekyll",
"version": "1.0.0",
"description": "My Jekyll setup.",
"scripts": {
"pretty:css": "prettier --write '_src/styles/scss/**/*.scss'",
"pretty:md": "prettier --write '{,!(vendor)/**/*.md}'",
"pretty:js": "prettier --write '_src/scripts/**/*.js'",
"pretty": "npm-run-all 'pretty:*'",
"build": "webpack",
"postbuild": "node ./scripts/compute-hashes.js",
"test:feeds": "node ./scripts/validate-feeds.js",
"test:visual": "mocha --timeout 15000 scripts/visual-regression.js"
},
"watch": {
"_src/styles/scss/**/*.scss": [
"pretty:css",
"build"
],
"_src/scripts/**/*.js": [
"pretty:js",
"build"
],
"_posts/**/2019/*.md": [
"prettier --write '{,!(vendor)/**/2019/*.md}'"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/borisschapira/jekyll-bs.git"
},
"author": "borisschapira",
"license": "MIT",
"bugs": {
"url": "https://github.com/borisschapira/jekyll-bs/issues"
},
"homepage": "https://github.com/borisschapira/jekyll-bs#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@fullhuman/postcss-purgecss": "^6.0.0",
"abbr-touch": "^2.1.6",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"blurhash": "^2.0.5",
"canvas": "^2.11.2",
"concat-cli": "^4.0.0",
"easy-toggle-state": "^1.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-import": "^2.31.0",
"fast-xml-parser": "^4.5.1",
"globby": "^14.0.2",
"hasha": "^6.0.0",
"hashmap": "^2.4.0",
"include-media": "^2.0.0",
"npm": "^10.9.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.2",
"rss-parser": "^3.13.0",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"uglify-js": "^3.19.3",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/eslint-parser": "^7.25.9",
"cssnano": "^7.0.6",
"dotenv": "^16.4.7",
"escape-string-regexp": "^5.0.0",
"file-loader": "^6.2.0",
"js-md5": "^0.8.3",
"js-yaml": "^4.1.0",
"normalize-scss": "^8.0.0",
"slugify": "^1.6.6",
"touchtap-event": "^2.0.2",
"turbolinks": "^5.2.0",
"workbox-broadcast-update": "^7.3.0",
"workbox-cacheable-response": "^7.3.0",
"workbox-core": "^7.3.0",
"workbox-expiration": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-range-requests": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0",
"workbox-sw": "^7.3.0"
}
}