-
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.91 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.91 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": "personal-website-v3",
"version": "1.0.0",
"description": "William Svoboda's personal website and portfolio.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf build",
"dev": "NODE_ENV=development npm-run-all clean --parallel dev:*",
"dev:tailwind": "tailwindcss --postcss -i src/style.css -o build/static/styles/style.css --watch",
"dev:eleventy": "ELEVENTY_ENV=development npx @11ty/eleventy --serve --quiet",
"build": "NODE_ENV=production npm-run-all clean --parallel build:*",
"build:postcss": "tailwindcss --postcss -i src/style.css -o build/static/styles/style.css --minify",
"build:eleventy": "ELEVENTY_ENV=production npx @11ty/eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thisstillwill/Personal-Website-V3.git"
},
"keywords": [],
"author": "William Svoboda",
"license": "MIT",
"bugs": {
"url": "https://github.com/thisstillwill/Personal-Website-V3/issues"
},
"homepage": "https://github.com/thisstillwill/Personal-Website-V3#readme",
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-img": "^2.0.1",
"@11ty/eleventy-navigation": "^0.2.0",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.1",
"@iktakahiro/markdown-it-katex": "^4.0.1",
"@tailwindcss/typography": "^0.5.2",
"autoprefixer": "^10.4.7",
"cssnano": "^5.0.2",
"eleventy-plugin-page-assets": "github:maxboeck/eleventy-plugin-page-assets",
"luxon": "^1.27.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.3.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-toc-done-right": "^4.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.2",
"tailwindcss": "^3.1.4"
}
}