-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.14 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.14 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
{
"name": "nmf-earth.github.io",
"description": "NMF.earth website",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "npm-run-all -p dev:*",
"dev:11ty": "eleventy --serve",
"dev:css": "tailwindcss -i src/assets/css/tailwind.css -o _site/assets/css/tailwind.css --watch --postcss",
"build": "run-s clean build:eleventy build:postcss",
"build:postcss": "NODE_ENV=production postcss src/assets/css/*.css --dir _site",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"build:prod": "npm run build:eleventy & npm run build:postcss",
"clean": "rimraf _site"
},
"keywords": [
"eleventy",
"static"
],
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.1.0",
"@tailwindcss/typography": "^0.5.2",
"alpinejs": "3.10.4",
"autoprefixer": "^10.4.7",
"cssnano": "^5.1.13",
"eleventy-plugin-lazyimages": "^2.1.2",
"markdown-it": "^13.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0",
"rimraf": "^3.0.2",
"tailwindcss": "^3.1.3"
}
}