generated from google/eleventy-high-performance-blog
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"name": "kelvinlockw.xyz",
"version": "1.0.0",
"description": "Kelvin Lockwood Personal Site",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"build": "cross-env NODE_ENV=production npm-run-all clean -p build:*",
"build:eleventy": "eleventy",
"build:webpack": "webpack",
"clean": "rm -rf dist",
"dev": "npm-run-all clean -p build:* -p dev:*",
"dev:eleventy": "eleventy --serve --quiet",
"dev:webpack": "webpack --watch"
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"htmlWhitespaceSensitivity": "ignore"
},
"keywords": [
"eleventy",
"tailwind",
"alpine"
],
"author": "Matt Waler",
"license": "MIT",
"dependencies": {
"@11ty/eleventy-img": "^0.8.3",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"alpinejs": "^2.8.2",
"turbolinks": "^5.2.0",
"typeface-encode-sans": "^1.1.13"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.0",
"@tailwindcss/forms": "^0.3.0",
"autoprefixer": "^10.2.5",
"cross-env": "^7.0.3",
"css-loader": "^5.2.0",
"cypress": "^7.1.0",
"markdown-it": "^12.0.4",
"markdown-it-anchor": "^7.1.0",
"markdown-it-container": "^3.0.0",
"mini-css-extract-plugin": "^1.3.9",
"netlify-plugin-cypress": "^2.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.1",
"postcss-import": "^14.0.0",
"postcss-loader": "^5.2.0",
"postcss-nested": "^5.0.5",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.4",
"tailwindcss-debug-screens": "^2.0.0",
"webpack": "^5.27.2",
"webpack-cli": "^4.5.0"
}
}