-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (41 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (41 loc) · 1.27 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
{
"name": "fern",
"version": "0.0.1",
"description": "FErN is a template to create websites, it uses (F)lowbite, (E)leventy and (N)etlify, and a few other things; use it to create awesome websites.",
"scripts": {
"clean": "rimraf public",
"dev:tailwind": "npx tailwindcss -i src/css/tailwind.css -o public/css/styles.css --watch",
"dev:eleventy": "npx @11ty/eleventy --serve",
"build:tailwind": "npx tailwindcss -i src/css/tailwind.css -o public/css/styles.css --minify",
"build:eleventy": "ELEVENTY_PRODUCTION=true npx @11ty/eleventy",
"dev": "npm-run-all clean --parallel dev:*",
"build": "NODE_ENV=production npm-run-all clean build:eleventy build:tailwind"
},
"repository": {
"type": "git",
"url": "git+https://nimblestart@github.com/nimblestart/fern.git"
},
"keywords": [
"eleventy",
"11ty",
"tailwind",
"tailwindcss",
"flowbite",
"netlify cms"
],
"author": "nimblestart",
"license": "MIT",
"bugs": {
"url": "https://github.com/nimblestart/fern/issues"
},
"homepage": "https://github.com/nimblestart/fern/#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"tailwindcss": "^3.3.3"
},
"dependencies": {
"flowbite": "^1.8.1"
}
}