-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 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
{
"name": "website",
"version": "0.0.2",
"description": "My personal website",
"main": "index.js",
"scripts": {
"clean": "rm -rf docs",
"build": "bun x eleventy",
"start": "DEBUG=Eleventy* bun x eleventy --serve",
"sass": "bun x gulp build",
"prestart": "bun run clean",
"prebuild": "bun run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheOceanBreeze/website.git"
},
"keywords": [
"website",
"personal",
"blog",
"portfolio",
"gallery",
"theoceanbreeze"
],
"author": "TheOceanBreeze",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/TheOceanBreeze/website/issues"
},
"homepage": "https://github.com/TheOceanBreeze/website#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-vite": "^4.0.0",
"html-minifier": "^4.0.0",
"moment": "^2.30.1",
"sass": "^1.79.3",
"vite-plugin-html": "^3.2.2"
}
}