-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.81 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
49
50
51
{
"name": "mattobee.com",
"version": "1.0.0",
"description": "A personal website for Matt Obee, built with Eleventy",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npm run lint && npm run format && npx @11ty/eleventy",
"start": "npm run lint:warn && npx @11ty/eleventy --serve --port=8081 --quiet",
"debug": "DEBUG=Eleventy* npm run lint:warn && npm run format && npx @11ty/eleventy",
"debugstart": "DEBUG=Eleventy* npm run lint:warn && npm run format && npx @11ty/eleventy --serve --port=8081",
"benchmark": "DEBUG=Eleventy:Benchmark* npm run lint:warn && npm run format && npx @11ty/eleventy",
"lint": "npx eslint .",
"lint:warn": "npx eslint . || true",
"format": "npx prettier --write .",
"clean": "rm -rf node_modules",
"reinstall": "npm run clean && npm install",
"rebuild": "npm run clean && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattobee/mocom11ty.git"
},
"author": "Matt Obee",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattobee/mocom11ty/issues"
},
"homepage": "https://github.com/mattobee/mocom11ty#readme",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-bundle": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0",
"@eslint/js": "^9.17.0",
"@shoelace-style/shoelace": "^2.19.1",
"dotenv": "^16.4.5",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.0.1",
"netlify-cli": "^17.37.2",
"prettier": "^3.4.2"
},
"dependencies": {
"@sanity/client": "^6.24.1"
}
}