generated from marcamos/jet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.25 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
{
"name": "jet",
"version": "4.3.0",
"description": "It's (j)ust (e)leventy and (t)ailwind … OK, and a few other things; it's still *really* small though.",
"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://marcamos@github.com/marcamos/jet.git"
},
"keywords": [
"eleventy",
"11ty",
"tailwind",
"tailwindcss"
],
"author": "marc amos",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcamos/jet/issues"
},
"homepage": "https://github.com/marcamos/jet#readme",
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.8",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tailwindcss": "^3.2.4"
}
}