This repository has been archived by the owner on Jul 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.77 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
{
"name": "wild-peaches",
"version": "0.0.1",
"description": "A blog about mind-sized STEM ideas and experiments",
"repository": {
"type": "git",
"url": "git+https://github.com/JanDW/wildpeaches.git"
},
"scripts": {
"css:postcss-dev": "npx postcss src/assets/styles/app.css -o tmp/style.css --env development",
"css:postcss-prod": "npx postcss src/assets/styles/app.css -o tmp/style.css --env production",
"css:minify": "npx cleancss tmp/style.css -o src/assets/styles/style.min.css",
"css:build-dev": "npm run css:postcss-dev && ncp tmp/style.css src/assets/styles/style.min.css",
"css:build-prod": "NODE_ENV=production && ELEVENTY_PRODUCTION=true && npm run css:postcss-prod && npm run css:minify",
"start": "npm run css:build-prod && npx @11ty/eleventy",
"serve": "npm run css:build-dev && npx @11ty/eleventy --serve",
"md:lint": "markdownlint src/**/*.md --rules \"markdownlint-rule-titlecase\"",
"rm:www": "rimraf www/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,json,css,md,yml,yaml}": "prettier --write",
"**/*.js": "eslint --cache --fix"
},
"keywords": [],
"author": "Jan De Wilde",
"license": "",
"bugs": {
"url": "https://github.com/JanDW/wildpeaches/issues"
},
"homepage": "https://github.com/JanDW/wildpeaches#readme",
"dependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.2",
"@iktakahiro/markdown-it-katex": "^4.0.1",
"@jamshop/eleventy-filter-dump": "^1.0.4",
"clean-css-cli": "^5.3.3",
"cssnano": "^5.0.7",
"dotenv": "^10.0.0",
"escape-string-regexp": "^4.0.0",
"markdown-it": "^12.2.0",
"markdown-it-anchor": "^8.1.2",
"markdown-it-attrs": "^4.0.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-image-lazy-loading": "^1.1.0",
"moment": "^2.29.1",
"ncp": "^2.0.0",
"node-fetch": "^2.6.1",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"postcss-custom-media": "^8.0.0",
"postcss-custom-selectors": "^6.0.0",
"postcss-easy-import": "^3.0.0",
"postcss-extend-rule": "^3.0.0",
"postcss-logical": "^4.0.2",
"postcss-media-minmax": "^5.0.0",
"postcss-preset-env": "^6.7.0",
"prism-themes": "^1.9.0",
"rimraf": "^3.0.2",
"slugify": "^1.6.0",
"tailwindcss": "^2.2.7"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"http-server": "^13.0.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"markdownlint-cli": "^0.28.1",
"markdownlint-rule-titlecase": "^0.1.0",
"prettier": "2.3.2"
}
}