This repository was archived by the owner on Jan 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.62 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.62 KB
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": "mattdecamp.com",
"version": "1.0.0",
"description": "Professional Site for Matt DeCamp",
"main": ".eleventy.js",
"scripts": {
"eleventy:dev": "cross-env ELEVENTY_ENV=development npx @11ty/eleventy --serve --quiet",
"eleventy:build": "cross-env ELEVENTY_ENV=production npx @11ty/eleventy",
"scss": "node-sass -o _src/_includes/css _src/scss",
"watch:css": "onchange '_src/scss/' -- npm run scss",
"sass:watch": "sass _src/scss:_src/_includes/css --watch --color",
"sass:build": "sass _src/scss:_src/_includes/css --no-source-map --style=compressed",
"start": "run-p sass:watch eleventy:dev",
"build": "run-s -l eleventy:build"
},
"keywords": [],
"author": "Matt DeCamp",
"repository": {
"type": "git",
"url": "git://github.com/mattdecamp/decampdev.git"
},
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-cache-assets": "^2.3.0",
"@11ty/eleventy-fetch": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"clean-css": "^5.2.4",
"cross-env": "^7.0.3",
"csvtojson": "^2.0.10",
"dotenv": "^16.0.0",
"eleventy-plugin-svg-sprite": "^2.1.0",
"html-minifier": "^4.0.0",
"luxon": "^3.2.1",
"markdown-it": "^12.3.2",
"node-fetch": "^3.3.0",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0"
},
"dependencies": {
"@11ty/eleventy-upgrade-help": "^3.0.1",
"@notionhq/client": "^2.2.3",
"D": "^1.0.0",
"notion-to-md": "^2.5.5",
"npm": "^8.11.0",
"sass": "^1.69.7",
"showdown": "^2.1.0"
}
}