-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "spencerharston.com",
"version": "3.0.0",
"description": "The personal website of Spencer Harston",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint \"./**/*.js\"",
"lint:fix": "eslint \"./**/*.js\" --fix",
"pretty": "prettier . --check",
"pretty:write": "prettier . --write",
"start": "run-p start:*",
"start:eleventy": "eleventy --serve",
"start:postcss": "postcss src/assets/css/*.css --dir dist/assets/css --watch --verbose",
"build": "run-s clean build:eleventy build:postcss",
"build:eleventy": "eleventy",
"build:postcss": "postcss src/assets/css/*.css --dir dist/assets/css",
"clean": "rm -rf ./dist",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sphars/spencerharston.com.git"
},
"author": "Spencer Harston",
"license": "MIT",
"bugs": {
"url": "https://github.com/sphars/spencerharston.com/issues"
},
"homepage": "https://github.com/sphars/spencerharston.com#readme",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@fontsource/ibm-plex-mono": "^5.1.0",
"@fontsource/sintony": "^5.1.0",
"@sardine/eleventy-plugin-external-links": "^1.4.0",
"@tabler/icons": "^3.19.0",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.20",
"canvas": "^2.11.2",
"cssnano": "^7.0.6",
"eleventy-plugin-reading-time": "^0.0.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.10.0",
"html-minifier-terser": "^7.2.0",
"husky": "^9.1.6",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.2.0",
"markdown-it-eleventy-img": "^0.10.2",
"markdown-it-footnote": "^4.0.0",
"markdown-it-image-figures": "^2.1.1",
"npm-run-all2": "^6.2.3",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.3",
"prettier-plugin-jinja-template": "^2.0.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.13"
}
}