-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "resume",
"version": "1.1.0",
"description": "An online resume",
"scripts": {
"start": "npm run dev",
"dev": "run-s clean eleventy:dev",
"build": "run-s clean eleventy:prod",
"eleventy:dev": "cross-env ELEVENTY_ENV=development eleventy --serve",
"eleventy:prod": "cross-env ELEVENTY_ENV=production eleventy",
"clean": "del-cli dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/maxboeck/resume"
},
"author": "Max Böck",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "1.0.0",
"@11ty/eleventy-cache-assets": "2.3.0",
"@11ty/eleventy-plugin-rss": "1.1.2",
"@babel/core": "7.16.7",
"@babel/plugin-transform-runtime": "7.16.7",
"@babel/preset-env": "7.16.7",
"babel-loader": "8.2.3",
"clean-css": "5.2.2",
"critical": "4.0.1",
"cssesc": "^3.0.0",
"del-cli": "^4.0.1",
"focus-visible": "^5.2.0",
"html-minifier": "^4.0.0",
"lodash": "^4.17.21",
"luxon": "^2.3.0",
"markdown-it": "^12.3.2",
"memfs": "^3.4.1",
"mime": "^3.0.0",
"netlify-plugin-cache": "^1.0.3",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"svg-sprite": "^1.5.3",
"webpack": "^5.65.0"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}