-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.33 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
{
"name": "manu.ninja",
"description": "manu.ninja is the personal blog of Manuel Timelthaler, where he talks about front-end development, web development, coding, games and digital art",
"version": "4.0.0",
"author": "Manuel Timelthaler <office@manuelwieser.com>",
"license": "MIT",
"scripts": {
"start": "npm run serve",
"build:clean": "rm -rf public",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"build:service-worker": "workbox generateSW workbox-config.js",
"build": "npm-run-all build:*",
"watch": "eleventy --watch",
"serve": "eleventy --serve",
"debug": "DEBUG=* eleventy",
"format": "prettier --single-quote --write '*.js' 'src/utils/*.js' 'src/**/*.js'"
},
"dependencies": {},
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"glob": "^8.0.3",
"html-minifier": "^4.0.0",
"luxon": "^2.4.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.4",
"markdown-it-table-of-contents": "^0.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"purgecss": "^4.1.3",
"sass": "^1.53.0",
"striptags": "^3.2.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"wordcount": "^1.1.1"
},
"peerDependencies": {
"workbox-cli": "^6.1.0"
}
}