-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.52 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
{
"name": "website",
"author": "Matthieu Vion <[email protected]>",
"license": "Apache-2.0",
"private": true,
"version": "1.0.0",
"description": "Personal website",
"dependencies": {
"eleventy-critical-css": "^0.1.2",
"sanitize.css": "^12.0.1",
"simple-icons": "^4.0.1",
"super-tiny-icons": "^0.4.0",
"water.css": "^2.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"autoprefixer": "^10.0.4",
"cssnano": "^4.1.10",
"del-cli": "^3.0.1",
"editorconfig-checker": "^3.3.0",
"hyperlink": "^4.6.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.0",
"postcss-import": "^13.0.0",
"postcss-nesting": "^7.0.1",
"puppeteer": "^5.5.0",
"sirv-cli": "^1.0.7",
"tap-spec-dot": "^0.1.4"
},
"scripts": {
"11ty:serve": "eleventy --serve",
"11ty:build": "eleventy",
"generate:resume": "npm-run-all -r -p serve pupeteer:resume",
"pupeteer:resume": "node scripts/render-resume.js",
"lint:editorconfig": "editorconfig-checker",
"lint:links": "hyperlink -p -r _site/index.html --canonicalroot https://mvion.fr",
"clean": "del-cli '_site/**/*'",
"build": "ELEVENTY_ENV=production npm-run-all -s clean lint:editorconfig postcss:build 11ty:build lint:links",
"postcss:build": "postcss src/styles.css src/cv.css --dir _site",
"postcss:watch": "postcss --verbose --watch src/styles.css src/cv.css --dir _site",
"serve": "sirv _site",
"watch": "npm-run-all -s clean -p 11ty:serve postcss:watch"
},
"keywords": [
"eleventy"
]
}