-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "bikebrigade-spoke",
"version": "0.0.1",
"description": "A simple blog, set up with Eleventy.",
"scripts": {
"tailwind:process": "postcss src/css/style.css --o build/style.css --watch",
"eleventy:serve": "npx eleventy --serve",
"start": "concurrently \"npm run tailwind:process\" \"npm run eleventy:serve\"",
"build": "NODE_ENV=production eleventy && NODE_ENV=production postcss src/css/style.css --o build/style.css"
},
"dependencies": {
"eleventy-plugin-seo": "^0.5.2",
"luxon": "^2.0.2",
"markdown-it": "^12.2.0"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.3",
"autoprefixer": "^10.4.0",
"concurrently": "^6.4.0",
"cssnano": "^5.0.12",
"postcss": "^8.4.4",
"postcss-cli": "^9.0.2",
"tailwindcss": "^2.2.19"
},
"engines": {
"node": "16"
},
"repository": {
"url": "https://glitch.com/edit/#!/glitch-hello-eleventy"
},
"glitch": {
"projectType": "generated_static"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}