-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.3 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
{
"name": "@sylvainmetayer/sylvainmetayer",
"version": "1.0.0",
"private": true,
"description": "Personal website",
"main": ".eleventy.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sylvainmetayer/sylvainmetayer.git"
},
"keywords": [
"portfolio",
"ssg",
"eleventy"
],
"type":"commonjs",
"author": "Sylvain METAYER <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sylvainmetayer/sylvainmetayer/issues"
},
"homepage": "https://github.com/sylvainmetayer/sylvainmetayer#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@erquhart/rollup-plugin-node-builtins": "^2.1.5",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"eleventy-plugin-toc": "^1.1.5",
"html-minifier": "^4.0.0",
"html-validate": "^8.0.5",
"image-size": "^1.0.2",
"javascript-stringify": "^2.1.0",
"jsdom": "^22.1.0",
"json-to-scss": "^1.6.2",
"make-dir-cli": "^1.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-footnote": "^4.0.0",
"moment": "^2.29.4",
"prettier": "^2.8.8",
"rollup": "^3.25.1",
"sass": "^1.63.6",
"semver": "^7.5.3",
"slugify": "^1.6.6",
"stalfos": "github:hankchizljaw/stalfos#c8971d22726326cfc04089b2da4d51eeb1ebb0eb"
},
"scripts": {
"sass:tokens": "npx json-to-scss src/_data/tokens.json src/scss/_tokens.scss",
"sass:process": "npm run sass:tokens && sass src/scss/global.scss src/_includes/assets/css/global.css --style=compressed",
"cms:precompile": "make-dir dist/admin && nunjucks-precompile src/_includes > dist/admin/templates.js -i \"\\.(njk|css|svg)$\"",
"cms:bundle": "rollup --config --bundleConfigAsCjs",
"start": "concurrently \"npm run sass:process -- --watch\" \"npm run cms:bundle -- --watch\" \"chokidar \\\"src/_includes/**\\\" -c \\\"npm run cms:precompile\\\"\" \"npm run serve\"",
"serve": "cross-env ELEVENTY_ENV=development npx eleventy --serve",
"production": "npm run sass:process && npm run cms:precompile && npm run cms:bundle && npx eleventy"
}
}