-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "site",
"version": "3.0.0",
"description": "tobiasbu's website project",
"type": "module",
"engines": {
"node": ">=20.x.x"
},
"scripts": {
"clean": "rm -rf ./dist",
"start": "npm run clean && ELEVENTY_ENV=development eleventy --serve --watch",
"build": "npm run clean && ELEVENTY_ENV=production eleventy"
},
"keywords": [
"site",
"website",
"portfolio",
"tobiasbu",
"tbu"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tobiasbu/site.git"
},
"homepage": "https://github.com/tobiasbu",
"author": "Tobias Ulrich",
"license": "AGPL-3.0-only",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"esbuild": "^0.24.0",
"html-minifier-terser": "^7.2.0",
"js-yaml": "^4.1.0",
"markdown-it": "^14.1.0",
"postcss": "^8.4.47",
"postcss-custom-media": "^11.0.2",
"postcss-import": "^16.1.0",
"postcss-mixins": "^11.0.3",
"postcss-simple-vars": "^7.0.1",
"svgo": "^3.3.2"
},
"dependencies": {
"modern-normalize": "^3.0.1"
}
}