-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
65
66
67
68
69
{
"name": "11ty-portfolio",
"version": "1.1.1",
"description": "My personal website built with the static site generator Eleventy",
"main": ".eleventy.js",
"jest": {
"verbose": true
},
"scripts": {
"watch:sass": "sass --watch src/_includes/sass:src/_includes/css",
"build:sass": "sass src/_includes/sass:src/_includes/css",
"watch:eleventy": "cross-env ELEVENTY_ENV=dev npx @11ty/eleventy --serve",
"build:eleventy": "cross-env ELEVENTY_ENV=prod npx @11ty/eleventy",
"dev": "npm run watch:sass & npm run watch:eleventy",
"build": "npm-run-all build:*",
"debug": "DEBUG=* npx @11ty/eleventy",
"lint": "stylelint src/_includes/sass/*.scss",
"test:scripts": "jest"
},
"keywords": [
"static site",
"Eleventy",
"11ty"
],
"author": {
"name": "Tanner Dolby",
"url": "https://github.com/tannerdolby"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy-fetch": "^4.0.0",
"@11ty/eleventy-img": "^4.0.2",
"@types/jest": "^26.0.24",
"capture-website": "^1.4.0",
"cheerio": "^1.0.0-rc.10",
"clean-css": "^4.2.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eleventy-plugin-metagen": "^1.8.2",
"eleventy-plugin-social-img": "^1.2.6",
"markdown-it": "^12.2.0",
"npm-run-all": "^4.1.5",
"nunjucks-date-filter": "^0.1.1",
"sass": "^1.39.0",
"sharp": "^0.33.5",
"slugify": "^1.6.0",
"speedlify-score": "^2.0.2",
"terser": "^5.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tannerdolby/tannerdolby.com.git"
},
"bugs": {
"url": "https://github.com/tannerdolby/tannerdolby.com/issues"
},
"homepage": "https://github.com/tannerdolby/tannerdolby.com/#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.1",
"babel-preset-env": "^1.7.0",
"grunt": "^1.4.1",
"jest": "^26.6.3",
"node-fetch": "^2.6.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
}
}